@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.22 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function PriorityBoarding(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: "M12.912 3.849a.833.833 0 0 1 .544-.78.813.813 0 0 1 .923.227l7.399 8.136a.85.85 0 0 1 .222.571.828.828 0 0 1-.228.57l-7.398 8.136a.84.84 0 0 1-1.462-.559v-1.175c0-.104.04-.205.11-.282l5.316-5.846a1.253 1.253 0 0 0 0-1.695l-5.316-5.846a.42.42 0 0 1-.11-.282V3.85zm3.403 8.725L8.918 20.71a.84.84 0 0 1-1.462-.56v-1.175a.42.42 0 0 1 .11-.282l5.314-5.846a1.253 1.253 0 0 0 0-1.695L7.564 5.306a.42.42 0 0 1-.11-.282V3.85A.833.833 0 0 1 8 3.069a.813.813 0 0 1 .924.227l7.398 8.136a.85.85 0 0 1 .223.571.828.828 0 0 1-.228.57zm-5.447-.008l-7.407 8.146A.84.84 0 0 1 2 20.148V3.852a.84.84 0 0 1 1.461-.564l7.407 8.148a.84.84 0 0 1 0 1.13z"
}));
}