目前我正在手动添加图标,但是对于几个图标来说,这种方式没有问题。但是如果有 100 个图标,它就变成了一个真正的问题。我怎样才能使它可重复使用。所以我可以应用这个元素,让它成为我想要的任何图标。最后它应该看起来像这样。
<Icon icon='login' color="yellow" mr="10px" fontSize="20px" />
// styled components
import { Facebook } from "@styled-icons/boxicons-logos/Facebook";
import { Instagram } from "@styled-icons/boxicons-logos/Instagram";
export const FaceBookIcon = styled(Facebook)`
${typography}
${space}
${layout}
${color}
`;
export const InstagramIcon = styled(Instagram)`
${typography}
${space}
${layout}
${color}
`;
// icons.tsx
import React from "react";
import { FaceBookIcon, InstagramIcon } from "./icon.styles";
export interface IconProps {
width?: number;
bg?: string;
color?: string;
}
export const Icon: React.FC<IconProps> = ({
width,
bg,
color,
...props
}) => {
return (
<div>
<FaceBookIcon width={60} bg={"black"} color={"white"}/>
<InstagramIcon width={60} bg={"black"} color={"white"}/>
</div>
);
};