import React, { FunctionComponent, SVGProps } from 'react'; interface Props extends SVGProps { iconColor?: string; } export const Frame: FunctionComponent = ({ iconColor, ...props }) => ( );