@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.66 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 StyledSushiRollSolid = ({
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: "M12 24C5.37321 24 0 21.3161 0 18V6C0 2.68607 5.37321 0 12 0C18.6268 0 24 2.68607 24 6V18C24 21.3161 18.6268 24 12 24ZM16.5107 8.91429C14.6196 8.19107 13.0929 6.98571 12.1179 5.51786C11.2607 5.72679 10.1732 6.08571 9.075 6.6375C8.07857 7.13571 7.11429 7.77321 6.27321 8.56607C7.83214 9.10179 9.81964 9.42857 11.9518 9.42857C13.6554 9.42857 15.2036 9.24107 16.5107 8.91429ZM3.42857 6C3.42857 6.55714 3.75857 7.07679 4.34411 7.54286C5.4375 6.3 6.75536 5.37857 8.11071 4.71964C9.1875 4.17857 10.2643 3.79821 11.1911 3.54589C11.1 3.23411 10.9875 2.91643 10.9875 2.595C6.73393 2.79536 3.42857 4.24286 3.42857 6ZM19.7464 7.46786C20.2768 7.02321 20.5714 6.525 20.5714 6C20.5714 4.26429 17.3518 2.83125 13.1679 2.60304C13.6661 4.875 16.0232 7.17321 19.7464 7.46786Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSushiRollSolid);
const SushiRollSolid = /*#__PURE__*/memo(ForwardRef);
export default SushiRollSolid;