@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.01 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function PromoCode(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.583 9.913A.417.417 0 0 0 22 9.497V6.58c0-.69-.56-1.25-1.25-1.25H3.25C2.56 5.33 2 5.89 2 6.58v2.917c0 .23.186.416.417.416a2.083 2.083 0 0 1 0 4.167.417.417 0 0 0-.417.417v2.916c0 .69.56 1.25 1.25 1.25h17.5c.69 0 1.25-.56 1.25-1.25v-2.916a.417.417 0 0 0-.417-.417 2.083 2.083 0 1 1 0-4.167zM8.225 14.888l6.667-6.666a.625.625 0 0 1 .883.883l-6.667 6.667a.625.625 0 0 1-.883-.884zm-.392-5.391a1.667 1.667 0 1 1 3.334 0 1.667 1.667 0 0 1-3.334 0zM14.5 12.83a1.667 1.667 0 1 1 0 3.333 1.667 1.667 0 0 1 0-3.333z"
}));
}