This commit is contained in:
Infinite
2020-02-09 13:22:19 +01:00
parent a7df23c54d
commit a43cae43c0
33 changed files with 246 additions and 194 deletions

View File

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