@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 843 B
JavaScript
const React = require("react");
function TrashIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20 8H4M7 6v0a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v0M9 17v-4M15 17v-4M12 17v-4"
}), /*#__PURE__*/React.createElement("path", {
d: "M19 8v8.036C19 19.33 17.085 22 14.722 22H9.278C6.915 22 5 19.33 5 16.036V8"
}));
}
const ForwardRef = React.forwardRef(TrashIcon);
module.exports = ForwardRef;