import * as React from 'react'; export interface TrashCan16Props extends React.SVGProps { ariaLabel?: string } export default function TrashCan16({ ariaLabel, ...props }: TrashCan16Props) { return ( ); }