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