import React, { FC } from 'react'; import styles from './styles.module.scss'; import { SVGProps } from '~/utils/types'; interface Props extends SVGProps {} const DropHereIcon: FC = ({ ...rest }) => ( ); export { DropHereIcon };