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)

23 lines (20 loc) 1.58 kB
import { __rest } from '../../node_modules/tslib/tslib.es6.js'; import React__default from 'react'; import { withTheme } from 'styled-components'; const getFillColor = (theme, color) => { return theme && theme.colors[color] ? theme.colors[color] : color; }; const SvgFiltersIcon = (_a) => { var { title, theme = null } = _a, props = __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("g", { className: "filters_svg__nc-icon-wrapper" }, React__default.createElement("path", { d: "M13 32V3a1 1 0 00-2 0v29a1 1 0 002 0zM13 61V49h7a1 1 0 001-1V38a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h7v12a1 1 0 002 0zM51 3v29a1 1 0 002 0V3a1 1 0 00-2 0zM43 38v10a1 1 0 001 1h7v12a1 1 0 002 0V49h7a1 1 0 001-1V38a1 1 0 00-1-1H44a1 1 0 00-1 1z" }), React__default.createElement("path", { "data-color": "color-2", d: "M31 3v7a1 1 0 002 0V3a1 1 0 00-2 0zM33 61V27h7a1 1 0 001-1V16a1 1 0 00-1-1H24a1 1 0 00-1 1v10a1 1 0 001 1h7v34a1 1 0 002 0z" })))); }; const SvgFiltersStyle = (_a) => { var { color = 'currentColor', title } = _a, props = __rest(_a, ["color", "title"]); return (React__default.createElement(SvgFiltersIcon, Object.assign({ color: getFillColor(props.theme, color), fill: getFillColor(props.theme, color), title: title }, props))); }; const FiltersIcon = withTheme(SvgFiltersStyle); export { FiltersIcon };