UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.51 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 StyledMapRegular = ({ 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: "M23.5667 3.17599C23.8375 3.36266 24 3.67057 24 3.99932V17.9993C24 18.3785 23.7417 18.7868 23.3542 18.9327L16.3542 21.5993C16.1417 21.6827 15.9042 21.6868 15.6833 21.616L8.02083 19.0618L1.35583 21.5993C1.04875 21.716 0.703333 21.6743 0.4325 21.491C0.16175 21.3035 0 20.9952 0 20.666V6.66599C0 6.24932 0.25625 5.87849 0.644167 5.73141L7.64583 3.06474C7.85833 2.98266 8.09583 2.97766 8.31667 3.05057L15.9792 5.60432L22.6458 3.06474C22.95 2.94766 23.2958 2.98932 23.5667 3.17599ZM2 19.216L7 17.3118V5.45057L2 7.35349V19.216ZM15 7.38682L9 5.38682V17.2785L15 19.2785V7.38682ZM17 19.216L22 17.3118V5.45057L17 7.35349V19.216Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledMapRegular); const MapRegular = /*#__PURE__*/memo(ForwardRef); export default MapRegular;