UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.18 kB
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 StyledBanRegular = ({ 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.356 5.948A9.696 9.696 0 0 0 2.25 12 9.749 9.749 0 0 0 12 21.75a9.703 9.703 0 0 0 6.052-2.105L4.356 5.948ZM21.75 12A9.749 9.749 0 0 0 12 2.25a9.696 9.696 0 0 0-6.052 2.106l13.697 13.696A9.703 9.703 0 0 0 21.75 12Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBanRegular); const BanRegular = /*#__PURE__*/memo(ForwardRef); export default BanRegular;