@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 • 976 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Entertainment(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: "M22 6.743v10.5a2.083 2.083 0 0 1-2.083 2.084H4.083A2.083 2.083 0 0 1 2 17.243v-10.5c0-1.15.933-2.083 2.083-2.083h15.834A2.083 2.083 0 0 1 22 6.743zm-2.917.25H4.917a.417.417 0 0 0-.417.417v9.167c0 .23.186.416.417.416h14.166a.417.417 0 0 0 .417-.416V7.41a.417.417 0 0 0-.417-.417zm-4.061 5.349l-4.403 2.515a.4.4 0 0 1-.599-.347V9.477a.4.4 0 0 1 .6-.348l4.402 2.516a.402.402 0 0 1 0 .697z"
}));
}