@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.57 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function FullScreen(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: "M2 21.167V17a.832.832 0 0 1 .244-.59.832.832 0 0 1 1.178 0l1.2 1.2a.208.208 0 0 0 .295 0l3.013-3.013a1.042 1.042 0 0 1 1.473 1.473L6.39 19.083v.001a.207.207 0 0 0 0 .294l1.2 1.2a.83.83 0 0 1 .243.589c0 .46-.373.833-.833.833H2.833A.833.833 0 0 1 2 21.167zM22 2.833V7a.833.833 0 0 1-.833.833.83.83 0 0 1-.59-.245L19.378 6.39a.208.208 0 0 0-.295 0L16.07 9.402a1.042 1.042 0 0 1-1.473-1.473l3.013-3.012a.208.208 0 0 0 0-.295l-1.2-1.2a.831.831 0 0 1-.243-.589c0-.46.372-.833.833-.833h4.167a.833.833 0 0 1 .833.833zM2 7V2.833c0-.46.373-.833.833-.833H7a.833.833 0 0 1 .59 1.422l-1.2 1.2a.208.208 0 0 0 0 .295l3.013 3.012A1.042 1.042 0 0 1 7.93 9.402l-3.16-3.16-1.347 1.347a.831.831 0 0 1-.59.244.823.823 0 0 1-.319-.063A.835.835 0 0 1 2 7zm20 10v4.167a.833.833 0 0 1-.833.833H17a.831.831 0 0 1-.59-.244.832.832 0 0 1 0-1.178l1.2-1.2a.208.208 0 0 0 0-.295l-3.013-3.013a1.042 1.042 0 0 1 1.473-1.473l3.013 3.013a.208.208 0 0 0 .295 0l1.2-1.2a.83.83 0 0 1 .589-.243c.46 0 .833.372.833.833z"
}));
}