UNPKG

@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.

18 lines 1.15 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Money(props) { return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: props.size, color: props.color, customColor: props.customColor, className: props.className, dataTest: props.dataTest, ariaHidden: props.ariaHidden, reverseOnRtl: props.reverseOnRtl, ariaLabel: props.ariaLabel }, React.createElement("path", { d: "M21.313 7.318c.344 0 .601.343.687.686v9.442c-.086.859-.687 1.545-1.545 1.545H5.005c-.43 0-.687-.257-.687-.686 0-.43.343-.687.686-.687h15.45a.185.185 0 0 0 .172-.172V8.004c0-.429.344-.686.687-.686zM18.31 5c.515 0 .858.343.858.858V15.3c0 .515-.343.859-.858.859H2.859c-.516 0-.859-.343-.859-.859V5.858C2 5.343 2.343 5 2.858 5H18.31zM4.575 8.434c.515 0 .858-.344.858-.859s-.343-.858-.858-.858c-.515 0-.858.343-.858.858 0 .515.343.859.858.859zm6.009 4.72c1.459 0 2.575-1.115 2.575-2.575s-1.116-2.575-2.575-2.575S8.009 9.12 8.009 10.58s1.116 2.575 2.575 2.575zm6.008 1.288c.515 0 .859-.343.859-.858 0-.515-.344-.859-.859-.859s-.858.344-.858.859.343.858.858.858z" })); }