UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.54 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 StyledClipboardUserSolid = ({ 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.75 3H16.2244C15.6047 1.25625 13.9547 0 12 0C10.0453 0 8.39531 1.25625 7.77656 3H5.25C4.00781 3 3 4.00688 3 5.25V21.75C3 22.9922 4.00781 24 5.25 24H18.75C19.9922 24 21 22.9931 21 21.75V5.25C21 4.00688 19.9922 3 18.75 3ZM12 3C12.8283 3 13.5 3.67172 13.5 4.5C13.5 5.32828 12.8283 6 12 6C11.1717 6 10.5 5.32969 10.5 4.5C10.5 3.67172 11.1703 3 12 3ZM12 9C13.657 9 15 10.343 15 12C15 13.657 13.657 15 12 15C10.343 15 9 13.6547 9 12C9 10.3453 10.3453 9 12 9ZM16.5 21H7.5C7.08581 21 6.75 20.6642 6.75 20.25C6.75 18.1781 8.42812 16.5 10.5 16.5H13.5C15.5709 16.5 17.25 18.1791 17.25 20.25C17.25 20.6625 16.9125 21 16.5 21Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledClipboardUserSolid); const ClipboardUserSolid = /*#__PURE__*/memo(ForwardRef); export default ClipboardUserSolid;