@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.06 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function DeviceDesktop(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.632 19.106h-1.316a.263.263 0 0 1-.263-.263v-.528a.263.263 0 0 1 .263-.263h6.579A2.105 2.105 0 0 0 22 15.947V4.895a2.105 2.105 0 0 0-2.105-2.105H4.105A2.105 2.105 0 0 0 2 4.895v11.053c0 1.163.943 2.105 2.105 2.105h6.58c.144 0 .262.117.262.262v.527a.263.263 0 0 1-.263.263H9.368a1.053 1.053 0 0 0 0 2.105h5.263a1.053 1.053 0 0 0 0-2.105zM4.105 15.422v-10a.526.526 0 0 1 .527-.527h14.736a.526.526 0 0 1 .527.527v10a.526.526 0 0 1-.527.526H4.632a.526.526 0 0 1-.527-.526z"
}));
}