UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.82 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 StyledPaperclipRegular = ({ 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: "M19.6725 3.11279C18.4245 1.81807 16.3911 1.81807 15.0997 3.11279L5.89021 12.3223C3.78695 14.4665 3.78695 17.878 5.89021 19.9789C7.99251 22.0845 11.404 22.0845 13.5048 19.9789L20.8289 12.6548C21.2818 12.2067 22.0142 12.2067 22.4238 12.6548C22.9153 13.1077 22.9153 13.8401 22.4238 14.2497L15.0997 21.5738C12.1364 24.6238 7.2601 24.6238 4.25482 21.5738C1.24839 18.6104 1.24839 13.7341 4.25482 10.7274L13.5048 1.4774C15.6587 -0.677364 19.1521 -0.677364 21.2674 1.4774C23.4646 3.63222 23.4646 7.12801 21.2674 9.2385L12.4544 18.1334C10.9318 19.656 8.42617 19.5163 7.08182 17.8395C5.93406 16.4036 6.04874 14.3316 7.34683 13.0306L14.6613 5.71621C15.1142 5.26809 15.8466 5.26809 16.2562 5.71621C16.7477 6.16914 16.7477 6.90155 16.2562 7.31112L8.98511 14.6641C8.51772 15.1315 8.47435 15.8783 8.88874 16.3939C9.37059 16.9962 10.2716 17.0492 10.8161 16.4999L19.6725 7.64359C20.9253 6.39561 20.9253 4.36414 19.6725 3.11279Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledPaperclipRegular); const PaperclipRegular = /*#__PURE__*/memo(ForwardRef); export default PaperclipRegular;