@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
22 lines • 901 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Invoice(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("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"
}));
}