UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

20 lines 1.08 kB
const React = require("react"); const { forwardRef } = require("react"); const TrashIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M20 7.25a.75.75 0 0 1 0 1.5h-.344c.06.12.094.256.094.4v8.35c0 2.9-2.35 5.25-5.25 5.25h-5a5.25 5.25 0 0 1-5.25-5.25V9.225a1 1 0 0 1 .123-.475H4a.75.75 0 0 1 0-1.5zm-11 5a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-.75-.75m3 0a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-.75-.75m3 0a.75.75 0 0 0-.75.75v4a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-.75-.75m-1-10A3.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.75h-4A2.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.25z" })); const ForwardRef = forwardRef(TrashIcon); module.exports = ForwardRef;