import { FunctionComponent } from 'react'; interface Props { size?: number; color?: string; className?: string; children?: JSX.Element; [props: string]: any; } declare const CursorPlusIcon: FunctionComponent<Props>; export default CursorPlusIcon;