@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 • 2.02 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Bug(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: "M20.417 8.834a.833.833 0 0 1 .672 1.524l-1.23.548a.417.417 0 0 0-.232.491 7.61 7.61 0 0 1 .195.909c.031.205.209.355.416.353h.929a.833.833 0 0 1 0 1.667h-.929c-.205 0-.38.15-.411.352a7.882 7.882 0 0 1-.279 1.175c-.062.197.03.41.215.5l1.215.593a.833.833 0 0 1-.366 1.583.82.82 0 0 1-.365-.083l-1.217-.594a.417.417 0 0 0-.525.137 7.917 7.917 0 0 1-5.405 3.34.417.417 0 0 1-.475-.416V10.37c0-.23.187-.417.417-.417h4.782a.425.425 0 0 0 .167-.036zM3.485 8.798l.098.036 2.429 1.083a.425.425 0 0 0 .11.032l.056.004h4.78c.205 0 .375.148.41.342l.007.075v10.542a.417.417 0 0 1-.475.417 7.917 7.917 0 0 1-5.405-3.34.417.417 0 0 0-.444-.168l-.081.03-1.218.594a.82.82 0 0 1-.365.083.833.833 0 0 1-.465-1.526l.1-.057 1.215-.593a.417.417 0 0 0 .215-.5 7.895 7.895 0 0 1-.279-1.174.417.417 0 0 0-.335-.346l-.076-.007h-.929a.833.833 0 0 1-.104-1.66l.104-.007h.924a.417.417 0 0 0 .417-.353 7.61 7.61 0 0 1 .195-.908.417.417 0 0 0-.166-.455l-.066-.037-1.23-.548a.833.833 0 0 1 .578-1.56zm4.883-4.833a3.783 3.783 0 0 0 1.139 1.913.21.21 0 0 0 .2.044 7.878 7.878 0 0 1 4.59 0 .21.21 0 0 0 .199-.044c.562-.508.933-1.216 1.136-1.91.204-.694.358-1.366 1.107-1.303.75.063.75.832.56 1.47-.19.638-.559 1.685-1.119 2.374a.21.21 0 0 0 .05.308 7.97 7.97 0 0 1 1.777 1.542.21.21 0 0 1-.099.335l-.059.01L6.151 8.7a.21.21 0 0 1-.158-.344 7.95 7.95 0 0 1 1.779-1.542.208.208 0 0 0 .05-.307c-.56-.69-.939-1.615-1.12-2.375-.182-.76-.06-1.404.574-1.467.633-.063.85.468 1.092 1.3z"
}));
}