@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.12 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Restaurant(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: "M14.912 2c1.943 0 3.905 5.046 3.958 11.036v.006a1.036 1.036 0 0 1-1.042 1.041H16.37a.417.417 0 0 0-.417.417v6.667a.833.833 0 1 1-1.666 0V2.625A.625.625 0 0 1 14.912 2zm-3.959 0a.833.833 0 0 1 .834.833V7a3.34 3.34 0 0 1-2.223 3.143.417.417 0 0 0-.277.393v10.63a.833.833 0 0 1-1.667 0v-10.63a.417.417 0 0 0-.278-.393A3.34 3.34 0 0 1 5.12 7V2.833a.833.833 0 1 1 1.667 0V7a1.66 1.66 0 0 0 .475 1.165.21.21 0 0 0 .358-.146V2.833a.833.833 0 1 1 1.667 0v5.188a.21.21 0 0 0 .357.146A1.66 1.66 0 0 0 10.12 7V2.833A.833.833 0 0 1 10.953 2z"
}));
}