UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.36 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 StyledBrakeWarningRegular = ({ 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 7.60073C12.4988 7.60073 12.9 8.00198 12.9 8.50073V12.7007C12.9 13.1995 12.4988 13.6007 12 13.6007C11.5013 13.6007 11.1 13.1995 11.1 12.7007V8.50073C11.1 8.00198 11.5013 7.60073 12 7.60073ZM13.2 16.0007C13.2 16.6645 12.6638 17.2007 12 17.2007C11.3363 17.2007 10.8 16.6645 10.8 16.0007C10.8 15.337 11.3363 14.8007 12 14.8007C12.6638 14.8007 13.2 15.337 13.2 16.0007ZM3.6 12.4007C3.6 7.76198 7.36125 4.00073 12 4.00073C16.6388 4.00073 20.4 7.76198 20.4 12.4007C20.4 17.0395 16.6388 20.8007 12 20.8007C7.36125 20.8007 3.6 17.0395 3.6 12.4007ZM12 19.0007C15.645 19.0007 18.6 16.0457 18.6 12.4007C18.6 8.75573 15.645 5.80073 12 5.80073C8.355 5.80073 5.4 8.75573 5.4 12.4007C5.4 16.0457 8.355 19.0007 12 19.0007ZM3.147 5.64398C3.56475 5.91286 3.6855 6.47011 3.41663 6.85448C2.39363 8.47823 1.8 10.3682 1.8 12.367C1.8 14.4332 2.39363 16.3232 3.41663 17.9132C3.6855 18.3332 3.56475 18.8882 3.147 19.1582C2.72888 19.4282 2.172 19.3045 1.90313 18.8545C0.698625 17.017 0 14.7895 0 12.367C0 10.012 0.698625 7.78448 1.90313 5.91361C2.172 5.49548 2.72888 5.37511 3.147 5.64398ZM20.8538 5.64398C21.27 5.37511 21.8288 5.49548 22.0988 5.91361C23.3025 7.78448 24 10.012 24 12.367C24 14.7895 23.3025 17.017 22.0988 18.8545C21.8288 19.3045 21.27 19.4282 20.8538 19.1582C20.4338 18.8882 20.3138 18.3332 20.5838 17.9132C21.6075 16.3232 22.2 14.4332 22.2 12.367C22.2 10.3682 21.6075 8.47823 20.5838 6.85448C20.3138 6.47011 20.4338 5.91286 20.8538 5.64398Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBrakeWarningRegular); const BrakeWarningRegular = /*#__PURE__*/memo(ForwardRef); export default BrakeWarningRegular;