UNPKG

@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.

31 lines (25 loc) 1.98 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = Gallery; var React = _interopRequireWildcard(require("react")); var _Icon = _interopRequireDefault(require("../Icon")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } } /* eslint-disable */ function Gallery(props) { return React.createElement(_Icon.default, { 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: "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" })); }