import React from "react"; interface Props { style?: React.CSSProperties; } export default function TrashIcon({ style }: Props) { return ( ); }