@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 1.45 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Passport.js.flow";
export default function Passport(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<path d="M7.05 3a1.8 1.8 0 0 0-1.8 1.8v14.4a1.8 1.8 0 0 0 1.8 1.8h10.8a1.8 1.8 0 0 0 1.8-1.8V4.8a1.8 1.8 0 0 0-1.8-1.8H7.05zm5.4 2.7a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9zm0 .9a6.771 6.771 0 0 0-.864 1.8h1.728a6.507 6.507 0 0 0-.864-1.8zm-1.17.198A3.504 3.504 0 0 0 9.336 8.4h1.314c.162-.558.36-1.098.63-1.602zm2.331 0c.27.504.477 1.044.639 1.602h1.314c-.414-.747-1.125-1.314-1.953-1.602zM8.967 9.3a3.68 3.68 0 0 0-.117.9c0 .315.045.612.117.9h1.521a7.432 7.432 0 0 1-.063-.9c0-.306.027-.603.063-.9H8.967zm2.43 0a5.878 5.878 0 0 0-.072.9c0 .306.027.603.072.9h2.106a7.43 7.43 0 0 0 .072-.9c0-.306-.036-.612-.072-.9h-2.106zm3.015 0c.036.297.063.594.063.9 0 .306-.027.603-.063.9h1.521a3.68 3.68 0 0 0 .117-.9 3.68 3.68 0 0 0-.117-.9h-1.521zM9.336 12c.414.747 1.116 1.314 1.944 1.602A8.017 8.017 0 0 1 10.65 12H9.336zm2.25 0c.189.648.495 1.242.864 1.8a6.387 6.387 0 0 0 .864-1.8h-1.728zm2.664 0a8.042 8.042 0 0 1-.639 1.602c.828-.288 1.539-.855 1.953-1.602H14.25zm-6.3 4.5h9v1.8h-9v-1.8z" />
</OrbitIcon>
);
}