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.

22 lines 543 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Money(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: "M8 16l-5-5V6h11l5 5v5H8zm14-8h2v13H5v-2h17V8zM11 8a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm10-4H1v14h20V4z" })); }