@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.65 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function FullScreenOff(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: "M21.688 2.312a1.064 1.064 0 0 1 0 1.504L18.785 6.72a.213.213 0 0 0 0 .3l1.13 1.129a.851.851 0 0 1-.604 1.453H15.25a.85.85 0 0 1-.851-.851V4.688a.852.852 0 0 1 .248-.602.851.851 0 0 1 1.205 0l1.123 1.13a.214.214 0 0 0 .301 0l2.908-2.905a1.064 1.064 0 0 1 1.504 0zM2.312 21.688a1.064 1.064 0 0 1 0-1.504l2.903-2.904a.213.213 0 0 0 0-.3l-1.13-1.128a.856.856 0 0 1-.25-.604.85.85 0 0 1 .854-.85H8.75c.47 0 .85.381.85.852v4.064a.852.852 0 0 1-.249.602.85.85 0 0 1-1.203 0l-1.124-1.131a.214.214 0 0 0-.302 0l-2.907 2.903a1.064 1.064 0 0 1-1.504 0zm12.086-2.377V15.25c0-.47.38-.851.851-.851h4.063a.85.85 0 0 1 .602.248.851.851 0 0 1 0 1.205l-1.13 1.125a.215.215 0 0 0 0 .3l2.904 2.907a1.063 1.063 0 1 1-1.504 1.504l-2.903-2.903a.215.215 0 0 0-.302 0l-1.128 1.128a.849.849 0 0 1-.601.25.85.85 0 0 1-.852-.852zM9.602 4.69V8.75a.851.851 0 0 1-.851.85H4.687a.854.854 0 0 1-.602-.249.85.85 0 0 1 0-1.203l1.13-1.124a.213.213 0 0 0 0-.3L2.312 3.815a1.064 1.064 0 0 1 1.504-1.505L6.72 5.215a.214.214 0 0 0 .301 0L8.15 4.086a.842.842 0 0 1 .927-.184.85.85 0 0 1 .526.787z"
}));
}