@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.13 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Cake(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: "M6.58 6.583a1.88 1.88 0 0 1-1.875-1.882 5.102 5.102 0 0 1 1.06-2.325 1.072 1.072 0 0 1 1.63 0A5.11 5.11 0 0 1 8.455 4.7 1.88 1.88 0 0 1 6.58 6.583zm10.833 0a1.88 1.88 0 0 1-1.875-1.882 5.102 5.102 0 0 1 1.06-2.325 1.072 1.072 0 0 1 1.63 0 5.11 5.11 0 0 1 1.06 2.325 1.88 1.88 0 0 1-1.875 1.882zm-5.416 0a1.88 1.88 0 0 1-1.875-1.882 5.102 5.102 0 0 1 1.06-2.325 1.072 1.072 0 0 1 1.63 0 5.11 5.11 0 0 1 1.06 2.325 1.88 1.88 0 0 1-1.875 1.882zm7.083 4.584c1.15 0 2.083.932 2.083 2.083v.3c0 .835-.634 1.534-1.465 1.617a1.89 1.89 0 0 1-1.761-.82 1.1 1.1 0 0 0-.917-.493 1.153 1.153 0 0 0-.982.516 1.877 1.877 0 0 1-3.084 0 1.198 1.198 0 0 0-1.916 0 1.877 1.877 0 0 1-3.084 0 1.167 1.167 0 0 0-.982-.516 1.1 1.1 0 0 0-.917.493 1.89 1.89 0 0 1-1.76.82 1.626 1.626 0 0 1-1.465-1.618v-.299c0-1.15.933-2.083 2.083-2.083a.417.417 0 0 0 .417-.417v-2.5a.833.833 0 0 1 .833-.833h.834a.833.833 0 0 1 .833.833v2.5c0 .23.187.417.417.417h2.083a.417.417 0 0 0 .417-.417v-2.5a.833.833 0 0 1 .833-.833h.833a.833.833 0 0 1 .834.833v2.5c0 .23.186.417.416.417h2.084a.417.417 0 0 0 .416-.417v-2.5a.833.833 0 0 1 .834-.833h.833a.833.833 0 0 1 .833.833v2.5c0 .23.187.417.417.417zm1.514 5.057a.417.417 0 0 1 .57.388v3.305A2.083 2.083 0 0 1 19.08 22H4.913a2.083 2.083 0 0 1-2.083-2.083v-3.305a.417.417 0 0 1 .573-.384c.246.098.505.16.769.187a3.157 3.157 0 0 0 2.535-.896.417.417 0 0 1 .583 0 3.125 3.125 0 0 0 4.412 0 .417.417 0 0 1 .589 0 3.122 3.122 0 0 0 2.2.911 3.058 3.058 0 0 0 2.197-.917.417.417 0 0 1 .595-.006 3.15 3.15 0 0 0 2.542.904 2.877 2.877 0 0 0 .77-.187z"
}));
}