@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.56 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Tips(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: "M13.563 19.917h.001a.417.417 0 0 1 .373.603l-.28.558a1.658 1.658 0 0 1-1.49.922h-.334a1.658 1.658 0 0 1-1.489-.922l-.279-.558a.417.417 0 0 1 .373-.603h3.125zM12 5.75a.833.833 0 0 1-.833-.833V2.833a.833.833 0 1 1 1.666 0v2.084A.833.833 0 0 1 12 5.75zm7.66-.577a.833.833 0 0 1 0 1.179l-1.473 1.472a.833.833 0 1 1-1.179-1.178l1.474-1.473a.833.833 0 0 1 1.178 0zm2.34 7.66a.833.833 0 0 1-.833.834H19.5a.833.833 0 0 1 0-1.667h1.667a.833.833 0 0 1 .833.833zM6.992 6.646a.833.833 0 0 1-1.179 1.178L4.34 6.352a.833.833 0 0 1 1.178-1.179l1.474 1.473zM4.5 12a.833.833 0 0 1 0 1.667H2.833a.833.833 0 0 1 0-1.667H4.5zM12 7a5.445 5.445 0 0 1 3.293 9.786.417.417 0 0 0-.167.353l.015.298v.026a1.22 1.22 0 0 1-1.218 1.204h-3.846a1.22 1.22 0 0 1-1.221-1.221v-.37a.417.417 0 0 0-.167-.333 5.338 5.338 0 0 1-2.138-4.295A5.455 5.455 0 0 1 12 7zm2.162 8.547h.003a3.782 3.782 0 1 0-4.323 0c.43.3.687.79.687 1.315a.138.138 0 0 0 .138.138h2.666a.139.139 0 0 0 .142-.138 1.603 1.603 0 0 1 .687-1.315z"
}));
}