@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.
22 lines • 588 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function FullScreenOff(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M8 9H2V7h5V2h2v6a1 1 0 0 1-1 1zm1 13H7v-5H2v-2h6a1 1 0 0 1 1 1v6zm8 0h-2v-6a1 1 0 0 1 1-1h6v2h-5v5zm5-13h-6a1 1 0 0 1-1-1V2h2v5h5v2z"
}));
}