import React from 'react'; interface IconProps { size?: number; color?: string; strokeWidth?: number; className?: string; } /** * Trash icon component */ export const Trash: React.FC = ({ size = 24, color = 'currentColor', strokeWidth = 2, className, ...props }) => { return ( ); }; export default Trash;