@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 780 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Tips.js.flow";
export default function Tips(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}