@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 • 981 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function CreditCard(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: "M2 17.214V9.823c0-.12.097-.218.217-.218h19.566c.12 0 .217.097.217.217v7.392c0 .96-.779 1.739-1.74 1.739H3.74c-.96 0-1.739-.779-1.739-1.739zm14.348-1.957a.652.652 0 1 0 0 1.305h2.609a.652.652 0 1 0 0-1.305h-2.61zM5.478 11.78a.652.652 0 1 0 0 1.304h6.957a.652.652 0 0 0 0-1.304H5.478zm0 3.478a.652.652 0 1 0 0 1.305h2.609a.652.652 0 1 0 0-1.305H5.478zM22 6.78v1.304c0 .12-.097.218-.217.218H2.217A.217.217 0 0 1 2 8.084V6.779c0-.96.779-1.739 1.74-1.739H20.26c.96 0 1.739.779 1.739 1.74z"
}));
}