Rename component folders, and prune styles

This commit is contained in:
Infinite
2020-02-02 22:34:02 +01:00
parent fd560c2147
commit c33639d824
50 changed files with 348 additions and 447 deletions

View File

@@ -9,7 +9,7 @@ interface IIcon {
}
const Icon: React.FC<IIcon> = ({ icon, className, color }) => (
<FontAwesomeIcon icon={icon} className={className} color={color} />
<FontAwesomeIcon icon={icon} className={`fa-icon ${className}`} color={color} />
);
export default Icon;