@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.21 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 StyledCalendarSolid = ({
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: "M6.5 1.5C6.5 0.671719 7.17031 0 8 0C8.82969 0 9.5 0.671719 9.5 1.5V3H15.5V1.5C15.5 0.671719 16.1703 0 17 0C17.8297 0 18.5 0.671719 18.5 1.5V3H20.75C21.9922 3 23 4.00734 23 5.25V7.5H2V5.25C2 4.00734 3.00734 3 4.25 3H6.5V1.5ZM23 21.75C23 22.9922 21.9922 24 20.75 24H4.25C3.00734 24 2 22.9922 2 21.75V9H23V21.75Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCalendarSolid);
const CalendarSolid = /*#__PURE__*/memo(ForwardRef);
export default CalendarSolid;