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.

39 lines (33 loc) 2.25 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = Sun; 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 Sun(props) { var color = props.color, size = props.size, customColor = props.customColor, className = props.className, dataTest = props.dataTest, ariaHidden = props.ariaHidden, ariaLabel = props.ariaLabel, reverseOnRtl = props.reverseOnRtl; return React.createElement(_Icon.default, { 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 5.87A6.136 6.136 0 0 1 18.13 12 6.13 6.13 0 1 1 12 5.87zm0 10.592a4.463 4.463 0 1 0 0-8.925 4.463 4.463 0 0 0 0 8.925zM12 4.89a.833.833 0 0 1-.833-.833V2.833a.833.833 0 1 1 1.666 0v1.223a.833.833 0 0 1-.833.833zM5.793 6.972l-.864-.865A.833.833 0 0 1 6.108 4.93l.864.864a.833.833 0 1 1-1.179 1.179zm-1.737 4.195a.833.833 0 1 1 0 1.666H2.833a.833.833 0 1 1 0-1.666h1.223zm1.737 5.861a.833.833 0 1 1 1.179 1.179l-.865.864a.833.833 0 1 1-1.178-1.178l.864-.865zM12 19.111a.833.833 0 0 1 .833.833v1.223a.833.833 0 1 1-1.666 0v-1.223a.833.833 0 0 1 .833-.833zm6.207-2.083l.864.865a.833.833 0 0 1-1.179 1.178l-.864-.864a.833.833 0 0 1 1.179-1.179zm2.96-5.861a.833.833 0 1 1 0 1.666h-1.223a.833.833 0 1 1 0-1.666h1.223zm-3.55-3.951a.833.833 0 0 1-.589-1.423l.865-.864a.833.833 0 0 1 1.178 1.179l-.864.864a.833.833 0 0 1-.59.244z" })); }