UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.93 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 StyledBusSimpleRegular = ({ 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: "M5.75 15.75C5.75 14.9203 6.42172 14.25 7.25 14.25C8.07969 14.25 8.75 14.9203 8.75 15.75C8.75 16.5797 8.07969 17.25 7.25 17.25C6.42172 17.25 5.75 16.5797 5.75 15.75ZM16.25 15.75C16.25 14.9203 16.9203 14.25 17.75 14.25C18.5797 14.25 19.25 14.9203 19.25 15.75C19.25 16.5797 18.5797 17.25 17.75 17.25C16.9203 17.25 16.25 16.5797 16.25 15.75ZM2.47812 3.28266C3.68094 1.81641 6.86563 0 12.5 0C18.5281 0 21.4062 1.81078 22.55 3.30703C22.9016 3.765 23 4.28813 23 4.70625V17.625C23 18.7547 22.4047 19.7859 21.5 20.4328V22.875C21.5 23.4984 20.9984 24 20.375 24C19.7516 24 19.25 23.4984 19.25 22.875V21H5.75V22.875C5.75 23.4984 5.24609 24 4.625 24C4.00391 24 3.5 23.4984 3.5 22.875V20.4328C2.59531 19.7859 2 18.7547 2 17.625V4.70625C2 4.29281 2.09586 3.74859 2.47812 3.28266ZM4.41266 4.5H20.6188C19.8781 3.69797 17.7125 2.25 12.5 2.25C7.70938 2.25 5.27281 3.66891 4.41266 4.5ZM20.75 6.75H4.25V10.5H20.75V6.75ZM20.75 12.75H4.25V17.625C4.25 18.2484 4.75391 18.75 5.375 18.75H19.625C20.2484 18.75 20.75 18.2484 20.75 17.625V12.75Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBusSimpleRegular); const BusSimpleRegular = /*#__PURE__*/memo(ForwardRef); export default BusSimpleRegular;