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