@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.14 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 StyledPizzaSliceRegular = ({
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: "M7.44846 0.00664317C7.3969 0.00078379 7.35003 5.25401e-05 7.29378 5.25401e-05C6.59065 -0.00571309 5.97424 0.4636 5.78674 1.13724L0.0239344 23.0485C-0.0346594 23.277 0.0128391 23.5151 0.159309 23.7029C0.29993 23.8876 0.51893 24.0001 0.753305 24.0001C0.823617 24.0001 0.892852 23.9892 0.957305 23.9716L22.8808 17.8966C23.619 17.6915 24.0761 16.9708 23.9884 16.2152C23.011 7.73912 15.975 0.815209 7.44846 0.00664317ZM2.86034 21.1126L6.69237 6.55787C12.4158 7.5188 16.3533 11.4047 17.3986 17.0813L2.86034 21.1126ZM19.5703 16.4766C18.3047 10.0782 13.7157 5.55474 7.26565 4.38287L7.81034 2.31427C14.7807 3.24005 20.6025 8.93771 21.6713 15.8893L19.5703 16.4766ZM9.00003 9.00006C8.17409 9.00006 7.54221 9.67412 7.54221 10.5001C7.54221 11.326 8.21628 12.0001 9.00003 12.0001C9.82596 12.0001 10.5 11.326 10.5 10.5001C10.5 9.67412 9.82503 9.00006 9.00003 9.00006ZM7.50003 15.0001C6.67409 15.0001 5.99862 15.6741 5.99862 16.5005C5.99862 17.3269 6.67268 17.9583 7.49862 17.9583C8.32456 17.9583 8.99956 17.2843 8.99956 16.4579C8.99956 15.6315 8.32503 15.0001 7.50003 15.0001ZM12 15.0001C12 15.826 12.6741 16.5001 13.5 16.5001C14.326 16.5001 15 15.826 15 15.0001C15 14.1741 14.326 13.5001 13.5 13.5001C12.6741 13.5001 12 14.1751 12 15.0001Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPizzaSliceRegular);
const PizzaSliceRegular = /*#__PURE__*/memo(ForwardRef);
export default PizzaSliceRegular;