/** * 为基础的svg图标服务:默认色号#3C3C43 。然后透明度是0.6 , hover:#000 */ import React, { FC, HTMLAttributes } from "react"; import clsx from "clsx"; interface Props extends HTMLAttributes {} const IconCom: FC = props => { const { children, className, ...divAttributes } = props; return (
{children}
); }; export default IconCom;