UNPKG

@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) 2.09 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./Bug.js.flow"; export default function Bug(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="M17.314 5.813C15.974 4.116 14.099 3 12 3 9.902 3 8.027 4.116 6.688 5.813c.313.714.714 1.34 1.25 1.92C9.054 8.804 10.483 9.385 12 9.385c1.518 0 2.946-.58 4.063-1.652a6.772 6.772 0 0 0 1.25-1.92zm-11.072.714c-.09.134-.178.268-.223.357-.135-.045-.224-.134-.358-.223a.849.849 0 0 1-.178-.357c.223-.492.045-1.117-.447-1.385-.535-.268-1.205-.089-1.473.402-.313.536-.09 1.161.402 1.474.045.045.134.045.179.09.134.267.312.624.625.848.178.178.357.313.67.491a10.154 10.154 0 0 0-.581 2.902c-.492.045-.804.09-1.117.179l-.535.268H3.07c-.58 0-1.071.491-1.071 1.071s.491 1.072 1.071 1.072c.581 0 1.028-.447 1.072-1.027.223-.045.446-.135.76-.135.133 1.474.58 2.857 1.294 4.018-.625.492-1.027 1.027-1.206 1.607 0 0-.045 0-.089.045l-.134.135c-.357.446-.357 1.116.09 1.517a1.067 1.067 0 0 0 1.517-.089c.357-.402.357-.982.045-1.384.134-.268.268-.402.58-.67 1.206 1.384 2.858 2.321 4.644 2.41V10.1A6.443 6.443 0 0 1 6.24 6.527h.001zm14.687 5.044h-.134l-.536-.267c-.313-.09-.625-.135-1.116-.179a10.154 10.154 0 0 0-.58-2.902c.312-.179.49-.313.67-.492.312-.223.49-.58.624-.848.045-.045.134-.045.179-.09.491-.312.714-.937.402-1.473-.268-.491-.938-.67-1.474-.402-.491.268-.67.893-.446 1.384a.861.861 0 0 1-.179.357c-.134.09-.223.179-.357.224a4.168 4.168 0 0 0-.223-.357 6.44 6.44 0 0 1-5.403 3.571v10.045c1.786-.09 3.438-1.027 4.643-2.41.313.267.447.402.581.67a1.08 1.08 0 0 0 .045 1.384 1.066 1.066 0 0 0 1.518.089c.446-.402.446-1.071.09-1.518l-.135-.134c-.045-.045-.09-.045-.09-.045-.178-.58-.58-1.117-1.205-1.607.714-1.161 1.16-2.545 1.295-4.018.313 0 .536.09.76.134.044.58.49 1.027 1.07 1.027.58 0 1.072-.491 1.072-1.071s-.491-1.072-1.071-1.072z" /> </OrbitIcon> ); }