import { FC } from "react" import IconProps from "./types/icon-type" const FileIcon: FC = (props) => { const { fill, size, ...attributes } = props const line = fill || "#2DD4BF" return ( ) } export default FileIcon