@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.71 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 StyledChildSolid = ({
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.3748 6.75001C14.2381 6.75001 15.7498 5.2383 15.7498 3.37502C15.7498 1.51174 14.2404 0 12.3748 0C10.5092 0 8.95762 1.51174 8.95762 3.37502C8.95762 5.2383 10.5139 6.75001 12.3748 6.75001ZM21.3326 5.19376C20.6815 4.39033 19.5017 4.26564 18.6959 4.91692L16.2936 6.86251C14.0829 8.65267 10.6639 8.65267 8.45138 6.86251L6.05466 4.9172C5.25075 4.26564 4.06857 4.3908 3.41795 5.19376C2.76638 6.00001 2.89013 7.18126 3.69498 7.83283L6.0945 9.77673C6.64435 10.2219 7.24903 10.5811 7.87481 10.898L7.83263 22.5C7.83263 23.3259 8.50669 24 9.33262 24H10.0404C10.8664 24 11.5404 23.3259 11.5404 22.5V17.25H13.0404V22.5C13.0404 23.3259 13.7145 24 14.5404 24H15.2482C16.0742 24 16.7482 23.3259 16.7482 22.5L16.7482 10.8984C17.374 10.5818 17.9787 10.2225 18.5281 9.77767L20.9281 7.83376C21.8576 7.18126 21.942 6.00001 21.3326 5.19376Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledChildSolid);
const ChildSolid = /*#__PURE__*/memo(ForwardRef);
export default ChildSolid;