@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.93 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 StyledPizzaSliceSolid = ({
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: "M4.70622 5.26406L0.0238825 23.0485C-0.0405707 23.3121 0.0314856 23.5922 0.224836 23.7797C0.418289 23.9731 0.699679 24.049 0.957492 23.9728L18.7278 19.0462C18.5297 10.8469 12.9609 5.34844 4.70622 5.26406ZM5.95779 19.5C5.13185 19.5 4.45779 18.8259 4.45779 18.0422C4.45779 17.2163 5.13232 16.5422 5.95825 16.5422C6.78466 16.5422 7.45826 17.2163 7.45826 18C7.49997 18.825 6.82497 19.5 5.95779 19.5ZM8.20779 12.7078C7.38138 12.7078 6.70779 12.0338 6.70779 11.2078C6.70779 10.3819 7.38185 9.75 8.20779 9.75C9.03372 9.75 9.70779 10.4241 9.70779 11.2078C9.74998 12.075 9.07498 12.7078 8.20779 12.7078ZM12.75 17.2078C11.924 17.2078 11.25 16.5338 11.25 15.75C11.25 14.9241 11.924 14.25 12.75 14.25C13.5764 14.25 14.25 14.9241 14.25 15.75C14.25 16.575 13.575 17.2078 12.75 17.2078ZM7.44841 0.00659005C6.69232 -0.0637225 5.98357 0.405075 5.78997 1.13722L5.09529 3.77438C13.889 4.03219 19.8375 9.89626 20.2125 18.5916L22.8787 17.8533C23.617 17.6482 24.074 16.9336 23.9864 16.1719C23.0109 7.73907 15.975 0.815156 7.44841 0.00659005Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPizzaSliceSolid);
const PizzaSliceSolid = /*#__PURE__*/memo(ForwardRef);
export default PizzaSliceSolid;