@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.
18 lines • 1.3 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Duplicate(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M20.25 17.333c0-.084.083-.25.083-.333V4.083c0-.25-.167-.417-.416-.417H7c-.25 0-.416.167-.416.417V17c0 .249.166.416.416.416h12.917c.166 0 .249 0 .333-.083zM20.333 2C21.25 2 22 2.75 22 3.667v13.75c0 .915-.75 1.666-1.667 1.666H6.583c-.916 0-1.666-.75-1.666-1.667V3.666C4.917 2.75 5.667 2 6.584 2h13.75zM18.25 20.333c.5 0 .833.333.833.833s-.333.833-.833.833H3.667C2.75 22 2 21.25 2 20.333V5.75c0-.5.333-.834.833-.834s.834.334.834.834v14.166c0 .25.166.417.416.417H18.25zM9.333 9.666H12.5a.18.18 0 0 0 .166-.166V6.333c0-.5.334-.833.834-.833.5 0 .833.333.833.833V9.5c0 .083.084.166.167.166h3.166c.501 0 .834.334.834.834s-.333.833-.834.833H14.5c-.083 0-.167.083-.167.167v3.166c0 .5-.333.834-.833.834-.5 0-.834-.334-.834-.834V11.5a.18.18 0 0 0-.166-.167H9.333c-.5 0-.833-.333-.833-.833-.084-.5.333-.834.833-.834z"
}));
}