@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.
22 lines • 757 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Tips(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M12 6a6 6 0 0 1 6 6c0 2.22-1.21 4.16-3 5.2V19a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-1.8c-1.79-1.04-3-2.98-3-5.2a6 6 0 0 1 6-6zm2 15v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1h4zm6-10h3v2h-3v-2zM1 11h3v2H1v-2zM13 1v3h-2V1h2zM4.92 3.5l2.13 2.14-1.42 1.41L3.5 4.93 4.92 3.5zm12.03 2.13l2.12-2.13 1.43 1.43-2.13 2.12-1.42-1.42z"
}));
}