@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.99 kB
JavaScript
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 StyledTrashCanRegular = ({
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: "M9.5 18.75C9.5 19.1625 9.1625 19.5 8.75 19.5C8.3375 19.5 8 19.1625 8 18.75V9C8 8.5875 8.3375 8.25 8.75 8.25C9.1625 8.25 9.5 8.5875 9.5 9V18.75ZM13.25 18.75C13.25 19.1625 12.9125 19.5 12.5 19.5C12.0875 19.5 11.75 19.1625 11.75 18.75V9C11.75 8.5875 12.0875 8.25 12.5 8.25C12.9125 8.25 13.25 8.5875 13.25 9V18.75ZM17 18.75C17 19.1625 16.6625 19.5 16.25 19.5C15.8375 19.5 15.5 19.1625 15.5 18.75V9C15.5 8.5875 15.8375 8.25 16.25 8.25C16.6625 8.25 17 8.5875 17 9V18.75ZM16.8828 1.16906L18.6031 3.75H21.875C22.4984 3.75 23 4.25391 23 4.875C23 5.49844 22.4984 6 21.875 6H21.5V20.25C21.5 22.3219 19.8219 24 17.75 24H7.25C5.17906 24 3.5 22.3219 3.5 20.25V6H3.125C2.50391 6 2 5.49844 2 4.875C2 4.25391 2.50391 3.75 3.125 3.75H6.39781L8.11719 1.16906C8.60469 0.438609 9.425 0 10.3016 0H14.6984C15.575 0 16.3953 0.438656 16.8828 1.16906ZM9.10156 3.75H15.8984L15.0078 2.41688C14.9375 2.31281 14.8203 2.25 14.6984 2.25H10.3016C10.1797 2.25 10.0203 2.31281 9.99219 2.41688L9.10156 3.75ZM5.75 20.25C5.75 21.0797 6.42172 21.75 7.25 21.75H17.75C18.5797 21.75 19.25 21.0797 19.25 20.25V6H5.75V20.25Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledTrashCanRegular);
const TrashCanRegular = /*#__PURE__*/memo(ForwardRef);
export default TrashCanRegular;