UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.74 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 StyledCalendarPenRegular = ({ 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: "M16.475 13.8937L15.7766 14.5922L13.2781 12.0516L13.9766 11.3906C14.6656 10.7016 15.7859 10.7016 16.475 11.3906C17.1641 12.0844 17.1641 13.2 16.475 13.8937ZM8.84844 16.5234L12.1766 13.1531L14.7172 15.6516L11.3469 19.0266C11.1547 19.1766 10.9109 19.3547 10.6484 19.4203L8.93281 19.8469C8.675 19.9125 8.40781 19.8375 8.22031 19.65C8.03281 19.4672 7.95781 19.1953 8.02344 18.9375L8.45 17.2219C8.51563 16.9594 8.61406 16.7156 8.84844 16.5234ZM8 0C8.62344 0 9.125 0.503906 9.125 1.125V3H15.875V1.125C15.875 0.503906 16.3766 0 17 0C17.6234 0 18.125 0.503906 18.125 1.125V3H20C21.6547 3 23 4.34297 23 6V21C23 22.6547 21.6547 24 20 24H5C3.34297 24 2 22.6547 2 21V6C2 4.34297 3.34297 3 5 3H6.875V1.125C6.875 0.503906 7.37656 0 8 0ZM20.75 9H4.25V21C4.25 21.4125 4.58562 21.75 5 21.75H20C20.4125 21.75 20.75 21.4125 20.75 21V9Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledCalendarPenRegular); const CalendarPenRegular = /*#__PURE__*/memo(ForwardRef); export default CalendarPenRegular;