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