@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.2 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 StyledDoNotEnterSolid = ({
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: "M0 12C0 5.37188 5.37188 0 12 0C18.6281 0 24 5.37188 24 12C24 18.6281 18.6281 24 12 24C5.37188 24 0 18.6281 0 12ZM4.5 9.75C4.08563 9.75 3.75 10.0875 3.75 10.5V13.5C3.75 13.9125 4.08563 14.25 4.5 14.25H19.5C19.9125 14.25 20.25 13.9125 20.25 13.5V10.5C20.25 10.0875 19.9125 9.75 19.5 9.75H4.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledDoNotEnterSolid);
const DoNotEnterSolid = /*#__PURE__*/memo(ForwardRef);
export default DoNotEnterSolid;