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