@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.55 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 StyledBroomRegular = ({
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: "M23.809 2.346a.898.898 0 0 0-1.264-.154l-8.741 6.832-1.477-1.856a.454.454 0 0 0-.71.003l-2.16 2.742c-1.166.03-3.9.247-5.7 1.68C1.435 13.438 0 21.172 0 21.172c.567.029 7.961.282 10.207-1.465 1.786-1.392 2.625-4.032 2.915-5.16l3.159-1.482c.229-.126.342-.464.164-.689l-1.521-1.91 8.73-6.822c.391-.341.462-.907.155-1.299ZM9.082 18.267c-.618.492-2.783 1.07-6.85 1.13.177-.717.379-1.43.59-2.114l1.701-1.316c.154-.145.042-.445-.187-.398l-.98.206c.502-1.322 1.04-2.329 1.528-2.752 1.012-.806 2.672-1.128 4.11-1.256l2.245 2.779c-.353 1.171-1.05 2.844-2.157 3.721Zm4.632-6.018-1.331.618-1.493-1.87.91-1.154c.088-.079.262-.117.35 0l1.643 2.057a.231.231 0 0 1-.08.349Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBroomRegular);
const BroomRegular = /*#__PURE__*/memo(ForwardRef);
export default BroomRegular;