UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.75 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledTrashCanSolid = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M8.3375 0.829219C8.59062 0.321 9.11094 0 9.67813 0H15.3219C15.8891 0 16.4094 0.321 16.6625 0.829219L17 1.5H21.5C22.3297 1.5 23 2.17172 23 3C23 3.82828 22.3297 4.5 21.5 4.5H3.5C2.67172 4.5 2 3.82828 2 3C2 2.17172 2.67172 1.5 3.5 1.5H8L8.3375 0.829219ZM3.45781 6H21.5V21C21.5 22.6547 20.1547 24 18.5 24H6.45781C4.84297 24 3.45781 22.6547 3.45781 21V6ZM7.20781 9.75V20.25C7.20781 20.6625 7.5875 21 7.95781 21C8.4125 21 8.70781 20.6625 8.70781 20.25V9.75C8.70781 9.3375 8.4125 9 7.95781 9C7.5875 9 7.20781 9.3375 7.20781 9.75ZM11.7078 9.75V20.25C11.7078 20.6625 12.0875 21 12.4578 21C12.9125 21 13.25 20.6625 13.25 20.25V9.75C13.25 9.3375 12.9125 9 12.4578 9C12.0875 9 11.7078 9.3375 11.7078 9.75ZM16.25 9.75V20.25C16.25 20.6625 16.5875 21 17 21C17.4125 21 17.75 20.6625 17.75 20.25V9.75C17.75 9.3375 17.4125 9 17 9C16.5875 9 16.25 9.3375 16.25 9.75Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledTrashCanSolid); const TrashCanSolid = /*#__PURE__*/memo(ForwardRef); export default TrashCanSolid;