@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.82 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 StyledMoneyBill1WaveRegular = ({
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: "M16 12.333C16 14.913 14.208 17 12 17c-2.246 0-4-2.087-4-4.667 0-2.579 1.754-4.666 4-4.666 2.208 0 4 2.087 4 4.666ZM11.333 11v2.667H11c-.367 0-.667.3-.667.666 0 .367.3.667.667.667h2c.367 0 .667-.3.667-.667 0-.366-.3-.666-.667-.666h-.333v-3.334c0-.366-.3-.666-.667-.666h-.667c-.366 0-.666.3-.666.666 0 .367.3.667.666.667ZM0 19.23V6.374C0 5.366 1.058 4.697 2.015 4.96c3.327.878 6.656.066 9.985-.783 3.62-.923 7.242-1.846 10.863-.5.712.265 1.137.988 1.137 1.76v12.817c0 1.046-1.058 1.717-2.012 1.417-3.33-.88-6.659-.03-9.988.817-3.62.925-7.242 1.845-10.863.5C.425 20.725 0 20 0 19.229Zm11.633-.713c2.33-.596 4.975-1.271 7.721-1.196A2.671 2.671 0 0 1 22 15V7.666a2.668 2.668 0 0 1-2.667-2.661c-1.958-.07-4.033.397-6.404.998-.183.046-.37.096-.562.146-2.33.596-4.975 1.27-7.721 1.196A2.67 2.67 0 0 1 2 9.666V17a2.668 2.668 0 0 1 2.667 2.663c1.92.07 4.033-.4 6.404-1 .183-.046.37-.096.562-.146Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledMoneyBill1WaveRegular);
const MoneyBill1WaveRegular = /*#__PURE__*/memo(ForwardRef);
export default MoneyBill1WaveRegular;