@patternfly/react-icons
Version:
PatternFly 4 Icons as React Components
14 lines (11 loc) • 489 B
JavaScript
import { createIcon } from '../createIcon';
export const TrashIconConfig = {
name: 'TrashIcon',
height: 512,
width: 448,
svgPath: 'M432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16zM53.2 467a48 48 0 0 0 47.9 45h245.8a48 48 0 0 0 47.9-45L416 128H32z',
yOffset: 0,
xOffset: 0,
};
export const TrashIcon = createIcon(TrashIconConfig);
export default TrashIcon;