@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.12 kB
JavaScript
import * as React from "react";
function TrashIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M10 3.75A2.25 2.25 0 0 0 7.75 6a.75.75 0 0 1-1.5 0A3.75 3.75 0 0 1 10 2.25h4A3.75 3.75 0 0 1 17.75 6a.75.75 0 0 1-1.5 0A2.25 2.25 0 0 0 14 3.75zM3.25 8A.75.75 0 0 1 4 7.25h16a.75.75 0 0 1 0 1.5h-1.025q.024.114.025.25v7.036C19 19.33 17.085 22 14.722 22H9.278C6.915 22 5 19.33 5 16.036V8.75H4A.75.75 0 0 1 3.25 8M9 12.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75m6.75.75a.75.75 0 0 0-1.5 0v4a.75.75 0 0 0 1.5 0zM12 12.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(TrashIcon);
export default ForwardRef;