@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 • 898 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Trip(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 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM5 12c0-.6.1-1.3.3-1.9h2.6c.8 0 1.5.3 2.1.9l.9.9c1.1 1.1 1.1 2.8.1 4l-1.1 1.3c-.3.4-.5.8-.5 1.3C6.8 17.4 5 14.9 5 12zm13.2 1.4l-1.8-2.8c-.4-.6-1-.9-1.7-.9h-.4c-1.3 0-2.3-1-2.3-2.3 0-1.1.7-1.9 1.7-2.2C16.7 6 19 8.7 19 12c0 .7-.1 1.3-.3 2-.2-.2-.4-.4-.5-.6z"
}));
}