UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.97 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 StyledPassportSolid = ({ 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: "M8.075 9.75C8.32109 11.2148 9.27594 12.428 10.5711 13.0491C10.2172 12.1594 9.98281 11.0156 9.9125 9.75H8.075ZM8.075 8.25H9.90922C9.97953 6.98438 10.2139 5.84156 10.5711 4.95094C9.27969 5.57344 8.32344 6.7875 8.075 8.25ZM12.5 13.4437C12.8656 13.0922 13.475 11.8266 13.5969 9.75H11.3984C11.5297 11.8266 12.1391 13.0922 12.5 13.4437ZM14.4266 4.95C14.7875 5.84062 15.0219 6.98438 15.0922 8.25H16.9264C16.6766 6.7875 15.725 5.57344 14.4266 4.95ZM20 0H5C3.34297 0 2 1.34297 2 3V21C2 22.657 3.34297 24 5 24H20C21.65 24 23 22.65 23 21V3C23 1.35 21.65 0 20 0ZM17.75 19.5H7.25C6.84219 19.5 6.5 19.1625 6.5 18.75C6.5 18.3375 6.84219 18 7.25 18H17.75C18.1602 18 18.5 18.3398 18.5 18.75C18.5 19.1602 18.1625 19.5 17.75 19.5ZM12.5 15C9.18359 15 6.5 12.3164 6.5 9C6.5 5.68359 9.18359 3 12.5 3C15.8164 3 18.5 5.68359 18.5 9C18.5 12.3164 15.8188 15 12.5 15ZM14.4266 13.05C15.7213 12.4289 16.6766 11.2158 16.9227 9.75094H15.0884C15.0219 11.0156 14.7875 12.1594 14.4266 13.05ZM11.4031 8.25H13.6006C13.4703 6.17812 12.8656 4.9125 12.5 4.55859C12.1391 4.9125 11.525 6.17812 11.4031 8.25Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledPassportSolid); const PassportSolid = /*#__PURE__*/memo(ForwardRef); export default PassportSolid;