@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.07 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Pet(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: "M15.417 7.627a2.333 2.333 0 1 1 0-4.667 2.333 2.333 0 0 1 0 4.667zm-6.834 0a2.333 2.333 0 1 1 0-4.667 2.333 2.333 0 0 1 0 4.667zm-4.25 5.416a2.333 2.333 0 1 1 0-4.666 2.333 2.333 0 0 1 0 4.666zm7.667 8c-3.417 0-6.167-1.75-6.167-3.833.084-1 .584-1.917 1.5-2.5.834-.667 1.584-1.5 2-2.417.417-1.166 1.5-1.916 2.667-2 1.167.084 2.25.834 2.667 2 .416 1 1.083 1.834 2 2.417.833.583 1.416 1.5 1.5 2.5 0 2.167-2.75 3.833-6.167 3.833zm7.667-8a2.333 2.333 0 1 1 0-4.666 2.333 2.333 0 0 1 0 4.666z"
}));
}