UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.81 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 StyledPaperclipSolid = ({ 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.3368 3.4403C17.1616 2.26465 15.2544 2.26465 14.0792 3.4403L5.21725 12.3023C3.19008 14.3299 3.19008 17.6146 5.21725 19.6423C7.2449 21.6699 10.5296 21.6699 12.5572 19.6423L19.878 12.3215C20.403 11.7966 21.2603 11.7966 21.7852 12.3215C22.3102 12.8465 22.3102 13.7038 21.7852 14.2288L14.4645 21.5495C11.3821 24.6319 6.39242 24.6319 3.31 21.5495C0.229998 18.4671 0.229998 13.4774 3.31 10.395L12.1719 1.53306C14.4019 -0.695915 18.0141 -0.695915 20.244 1.53306C22.474 3.76203 22.474 7.37521 20.244 9.60514L11.7674 18.0818C10.3899 19.4592 8.15518 19.4592 6.77772 18.0818C5.39979 16.7043 5.39979 14.4696 6.77772 13.0921L13.7132 6.15669C14.2381 5.63171 15.0954 5.63171 15.6204 6.15669C16.1454 6.68166 16.1454 7.53896 15.6204 8.06393L8.68497 14.9994C8.36228 15.3221 8.36228 15.8519 8.68497 16.1745C9.00766 16.4972 9.53745 16.4972 9.86014 16.1745L18.3368 7.6979C19.5119 6.52272 19.5119 4.61548 18.3368 3.4403Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledPaperclipSolid); const PaperclipSolid = /*#__PURE__*/memo(ForwardRef); export default PaperclipSolid;