@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.35 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Gallery(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: "M12.667 8.833l2.19 5.476a.417.417 0 0 1-.387.572H5.303a.417.417 0 0 1-.357-.631l2.072-3.45a.97.97 0 0 1 1.639-.127l.91 1.095a.208.208 0 0 0 .35-.046l1.333-2.92a.728.728 0 0 1 1.417.031zM6.97 8.25a1.667 1.667 0 1 1 0-3.333 1.667 1.667 0 0 1 0 3.333zm9.197 9.583h-12.5c-.92 0-1.667-.746-1.667-1.666v-12.5C2 2.747 2.746 2 3.667 2h12.5c.92 0 1.666.746 1.666 1.667v12.5c0 .92-.746 1.666-1.666 1.666zm-12.5-13.75V15.75c0 .23.186.417.416.417H15.75a.417.417 0 0 0 .417-.417V4.083a.417.417 0 0 0-.417-.416H4.083a.417.417 0 0 0-.416.416zm18.326 5.613l-.98 10.789a1.667 1.667 0 0 1-1.812 1.51L7.583 20.931a.833.833 0 1 1 .148-1.659l11.202 1.02a.417.417 0 0 0 .453-.376l.908-9.957a.417.417 0 0 0-.377-.453L19.5 9.47a.833.833 0 0 1 .15-1.66l.833.076a1.667 1.667 0 0 1 1.51 1.81z"
}));
}