import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { Icon } from '../iconTypes'; type Props = Icon & { baseClassName: string; children: React.ReactChild | Array; }; const IconFileBase = ({ children, className = '', baseClassName, height = 32, title, width = 32 }: Props) => { return ( {children} ); }; export default IconFileBase;