@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.18 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 StyledPassportRegular = ({
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: "M20 0H5C3.34297 0 2 1.34297 2 3V21C2 22.6566 3.34297 24 5 24H20C21.65 24 23 22.65 23 21V3C23 1.35 21.65 0 20 0ZM20.75 21C20.75 21.4142 20.4142 21.75 20 21.75H5C4.58581 21.75 4.25 21.4142 4.25 21V3C4.25 2.58581 4.58581 2.25 5 2.25H20C20.4142 2.25 20.75 2.58581 20.75 3V21ZM17.75 18H7.25C6.84219 18 6.5 18.3422 6.5 18.75C6.5 19.1578 6.84219 19.5 7.25 19.5H17.75C18.1602 19.5 18.5 19.1602 18.5 18.75C18.5 18.3398 18.1625 18 17.75 18ZM12.5 15.375C15.6055 15.375 18.125 12.8555 18.125 9.75C18.125 6.64453 15.6078 4.125 12.5 4.125C9.39219 4.125 6.875 6.64688 6.875 9.75C6.875 12.8531 9.39688 15.375 12.5 15.375ZM16.55 9H14.9267C14.8623 7.89281 14.6571 6.89062 14.3525 6.08203C15.4812 6.65625 16.3156 7.71562 16.55 9ZM14.9281 10.5H16.5514C16.317 11.7834 15.4789 12.8438 14.3539 13.418C14.6141 12.6094 14.8625 11.6062 14.9281 10.5ZM12.5 5.73281C12.8234 6.12188 13.3203 7.24687 13.4375 9H11.5625C11.6797 7.24687 12.1766 6.12188 12.5 5.73281ZM13.4375 10.5C13.3203 12.2531 12.8234 13.3781 12.5 13.7719C12.1766 13.3781 11.6797 12.2531 11.5625 10.5H13.4375ZM10.6484 6.08438C10.3016 6.89062 10.1375 7.89375 10.0766 9H8.45C8.68438 7.71562 9.51875 6.65625 10.6484 6.08438ZM10.0766 10.5C10.1375 11.6062 10.3016 12.6094 10.6484 13.4203C9.52344 12.8437 8.68438 11.7844 8.45 10.5H10.0766Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPassportRegular);
const PassportRegular = /*#__PURE__*/memo(ForwardRef);
export default PassportRegular;