@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.83 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 StyledClipboardUserRegular = ({
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: "M18 3H15.6745C15.2859 1.28813 13.8141 0 12 0C10.1859 0 8.67188 1.28813 8.325 3H6C4.34297 3 3 4.34344 3 6V21C3 22.6566 4.34297 24 6 24H18C19.657 24 21 22.6566 21 21V6C21 4.34344 19.6547 3 18 3ZM12 2.25C12.6202 2.25 13.125 2.75484 13.125 3.375C13.125 3.99516 12.6187 4.5 12 4.5C11.3813 4.5 10.875 3.99516 10.875 3.375C10.875 2.75484 11.3813 2.25 12 2.25ZM18.75 21C18.75 21.4134 18.4135 21.75 18 21.75H17.9244C17.5641 19.6219 15.7266 18 13.5 18H10.5C8.27156 18 6.43453 19.6238 6.07547 21.75H6C5.58647 21.75 5.25 21.4134 5.25 21V6C5.25 5.58656 5.58647 5.25 6 5.25H6.85594C6.79359 5.48906 6.75 5.7375 6.75 6V6.75C6.75 7.1625 7.08563 7.5 7.5 7.5H16.5C16.9142 7.5 17.25 7.16419 17.25 6.75V6C17.25 5.73942 17.2063 5.49094 17.1439 5.25H18C18.4135 5.25 18.75 5.58656 18.75 6V21ZM12 10.5C10.3453 10.5 9 11.8453 9 13.5C9 15.1566 10.343 16.5 12 16.5C13.657 16.5 15 15.1566 15 13.5C15 11.8453 13.6547 10.5 12 10.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledClipboardUserRegular);
const ClipboardUserRegular = /*#__PURE__*/memo(ForwardRef);
export default ClipboardUserRegular;