@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.14 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 StyledBanSolid = ({
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 12c0 6.628-5.372 12-12 12S0 18.628 0 12 5.372 0 12 0s12 5.372 12 12ZM4.664 6.787A8.94 8.94 0 0 0 3 12c0 4.969 3.99 9 9 9a8.923 8.923 0 0 0 5.212-1.664L4.664 6.788ZM21 12c0-5.01-4.031-9-9-9a8.94 8.94 0 0 0-5.213 1.664l12.549 12.549A8.923 8.923 0 0 0 21 12Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBanSolid);
const BanSolid = /*#__PURE__*/memo(ForwardRef);
export default BanSolid;