@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.72 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 StyledMartiniGlassCitrusRegular = ({
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: "M24.001 7C24.001 10.3125 21.3135 13 18.0385 13C16.8976 13 15.8405 12.6615 14.9293 12.1092L16.398 10.6404C16.8676 10.8667 17.4176 11 18.001 11C20.2043 11 21.9635 9.20833 21.9635 7C21.9635 4.79167 20.1668 3 18.001 3C16.5268 3 15.2885 3.8125 14.5584 5H12.3709C13.1939 2.67708 15.3918 1 18.0001 1C21.3135 1 24.001 3.6875 24.001 7ZM13.3343 21.3333C13.3343 21.8854 12.8864 22.3333 12.3343 22.3333H5.00094C4.45094 22.3333 4.00094 21.8875 4.00094 21.3333C4.00094 20.7792 4.44886 20.3333 5.00094 20.3333H7.66761V15.4458L0.300935 8.08333C-0.342774 7.4375 0.11556 6.33333 1.02719 6.33333H16.3064C17.218 6.33333 17.676 7.4375 17.0301 8.08333L9.66761 15.45V20.3333H12.3343C12.8884 20.3333 13.3343 20.7833 13.3343 21.3333ZM8.66761 13.6208L13.9551 8.33333H3.38135L8.66761 13.6208Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledMartiniGlassCitrusRegular);
const MartiniGlassCitrusRegular = /*#__PURE__*/memo(ForwardRef);
export default MartiniGlassCitrusRegular;