@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 • 889 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Plus(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 5.11a.9.9 0 0 1 .9.9v4.688a.4.4 0 0 0 .4.4h4.688a.9.9 0 0 1 .893.787l.007.113a.9.9 0 0 1-.9.9H13.3a.4.4 0 0 0-.4.4v4.688a.9.9 0 0 1-.787.893l-.113.007a.9.9 0 0 1-.9-.9v-4.688a.4.4 0 0 0-.4-.4H6.012a.9.9 0 0 1-.893-.787l-.007-.113a.9.9 0 0 1 .9-.9H10.7a.4.4 0 0 0 .4-.4V6.01a.9.9 0 0 1 .787-.893L12 5.11z"
}));
}