@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) • 927 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Invoice.js.flow";
export default function Invoice(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="M15 10h-3.5a.5.5 0 0 0 0 1h1c1.378 0 2.5 1.122 2.5 2.5 0 1.207-.86 2.217-2 2.449V17h-2v-1H9v-2h3.5a.5.5 0 0 0 0-1h-1A2.503 2.503 0 0 1 9 10.5c0-1.207.86-2.217 2-2.449V7h2v1h2v2zm4.526-8.85a.998.998 0 0 0-.973-.044l-3.481 1.74-2.517-1.678a1 1 0 0 0-1.11 0L8.928 2.846l-3.481-1.74A.998.998 0 0 0 4 2v20a1.003 1.003 0 0 0 1 1c.153 0 .306-.035.447-.105l3.481-1.741 2.517 1.678a1 1 0 0 0 1.11 0l2.516-1.678 3.482 1.741A1 1 0 0 0 20 22V2a1 1 0 0 0-.474-.85z" />
</OrbitIcon>
);
}