UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

29 lines (23 loc) 1.77 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } var tslib_es6 = require('../../node_modules/tslib/tslib.es6.js'); var React = require('react'); var React__default = _interopDefault(React); var styled = require('styled-components'); var styled__default = _interopDefault(styled); const getFillColor = (theme, color) => { return theme && theme.colors[color] ? theme.colors[color] : color; }; const SvgInfoIcon = (_a) => { var { title, theme = null } = _a, props = tslib_es6.__rest(_a, ["title", "theme"]); return (React__default.createElement("svg", Object.assign({ viewBox: "0 0 64 64", width: "1em", height: "1em" }, props), title ? React__default.createElement("title", null, title) : null, React__default.createElement("path", { d: "M32 2a30 30 0 1030 30A30.034 30.034 0 0032 2zm4.576 47.367A18.587 18.587 0 0130.613 51a3.942 3.942 0 01-2.969-1.028 4.036 4.036 0 01-.891-3.727c.347-2.184 2.671-10.488 3.318-13.944.177-.942.4-2.851-.271-3.529-.856-.857-3.515-.294-4.68.012l.371-1.583a17.893 17.893 0 015.886-1.707 3.9 3.9 0 012.943.966 4.385 4.385 0 01.816 3.814c-.128.992-.035.486-2.926 12.061-.4 1.589-1.146 4.39.015 5.35 1.144.947 4.045.35 4.721.1zM35 19a3 3 0 113-3 3 3 0 01-3 3z" }))); }; const SvgInfoStyle = (_a) => { var { color = 'currentColor', title } = _a, props = tslib_es6.__rest(_a, ["color", "title"]); return (React__default.createElement(SvgInfoIcon, Object.assign({ color: getFillColor(props.theme, color), fill: getFillColor(props.theme, color), title: title }, props))); }; const InfoIcon = styled.withTheme(SvgInfoStyle); exports.InfoIcon = InfoIcon;