@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.15 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Visa(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: "M21.5 7.5l-4.9-5c-.4-.3-.8-.5-1.2-.5H8.6c-.4 0-.8.2-1.2.5l-4.9 5c-.3.3-.5.7-.5 1.2v6.8c0 .4.2.8.5 1.2l4.8 4.8c.4.3.8.5 1.3.5h6.8c.4 0 .8-.2 1.2-.5l4.9-4.8c.3-.3.5-.8.5-1.2V8.7c0-.5-.2-.9-.5-1.2zm-4.9 8.1c0 1.7-1.3 3-3 3H11c-.9 0-1.8-.4-2.3-1.2 0-.1-.1-.1-.1-.2l-1.1-1.6c-.5-.8-1-1.7-1.3-2.6-.2-.2-.1-.7.2-1 .2-.2.7-.2.9-.1l1 1.2.1.1c.1 0 .2-.1.2-.2V7.6c0-.4.3-.8.8-.8.4 0 .7.3.7.8v3.9c0 .2.2.3.3.3.2 0 .3-.2.3-.3V6.2c0-.4.3-.8.8-.8s.8.3.8.8v5.2c0 .2.2.3.3.3.2 0 .3-.2.3-.3v-4c0-.4.3-.8.7-.8.4 0 .8.3.8.8v4.1c0 .2.2.3.3.3.1 0 .3-.2.3-.3v-3c0-.4.3-.8.8-.8s.7.3.7.8l.1 7.1z"
}));
}