@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.
28 lines • 1.46 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Invoice(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M19.96 6.878l-4.512-4.512A1.26 1.26 0 0 0 14.565 2H4.91c-.69 0-1.25.56-1.25 1.25v17.5c0 .69.56 1.25 1.25 1.25h15a.417.417 0 0 0 .417-.417V7.762a1.242 1.242 0 0 0-.366-.884zm-9.786 4.441l-2.808-1.05A2.125 2.125 0 0 1 6.16 8.213 2.108 2.108 0 0 1 8.067 6.1a.207.207 0 0 0 .176-.206v-.56a.833.833 0 0 1 1.667 0v.52c0 .115.093.209.208.209h1.042a.833.833 0 1 1 0 1.666H8.556c-.73 0-.73.364-.73.484a.75.75 0 0 0 .153.51l2.808 1.05a2.125 2.125 0 0 1 1.206 2.06 2.108 2.108 0 0 1-1.907 2.109.207.207 0 0 0-.176.206v.56a.833.833 0 1 1-1.667 0v-.52a.208.208 0 0 0-.208-.209H6.993a.833.833 0 0 1 0-1.666h2.604c.73 0 .73-.364.73-.484a.75.75 0 0 0-.153-.51zm7.236 2.973a.625.625 0 1 1 0 1.25h-4.167a.625.625 0 0 1 0-1.25h4.167zm-3.125-3.125a.625.625 0 0 1 .625-.625h2.5a.625.625 0 1 1 0 1.25h-2.5a.625.625 0 0 1-.625-.625zm3.125 6.875a.625.625 0 1 1 0 1.25H9.077a.625.625 0 0 1 0-1.25h8.333z"
}));
}