@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 StyledMartiniGlassCitrusSolid = ({
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 20.3333H10V15.1125L17.0334 8.08333C17.6792 7.4375 17.2209 6.33333 16.3084 6.33333H1.02628C0.114656 6.33333 -0.343677 7.4375 0.302156 8.08333L7.33132 15.1125V20.3333H5.33336C4.59711 20.3333 4.00003 20.9304 4.00003 21.6667C4.00003 22.0348 4.29853 22.3333 4.62919 22.3333H12.5917C12.9599 22.3333 13.2209 22.0348 13.2209 21.6667C13.3334 20.9292 12.7375 20.3333 12 20.3333ZM18 1C15.3904 1 13.1917 2.67708 12.3709 5H14.5584C15.2509 3.8125 16.5271 3 18.0009 3C20.2042 3 21.9633 4.79167 21.9633 7C21.9633 9.20833 20.1667 11 18.0009 11C17.4175 11 16.8654 10.8646 16.3604 10.6406L14.8917 12.1094C15.8034 12.6615 16.8604 13.0002 18.0009 13.0002C21.3134 13.0002 23.9633 10.3127 23.9633 7.00021C23.9633 3.68771 21.3125 1 18 1Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledMartiniGlassCitrusSolid);
const MartiniGlassCitrusSolid = /*#__PURE__*/memo(ForwardRef);
export default MartiniGlassCitrusSolid;