@findify/react-components
Version:
Findify react UI components
67 lines (60 loc) • 3.46 kB
JavaScript
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
export default (function (_ref) {
var title = _ref.title,
rest = _objectWithoutProperties(_ref, ["title"]);
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
width: 17,
height: 16
}, rest), {}, {
viewBox: "0 0 17 16",
children: [!!title ? /*#__PURE__*/_jsx("title", {
children: title
}) : null, /*#__PURE__*/_jsxs("g", {
fill: "currentColor",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("rect", {
x: "2",
width: "1",
height: "5",
rx: ".5"
}), /*#__PURE__*/_jsx("rect", {
x: "8",
width: "1",
height: "9",
rx: ".5"
}), /*#__PURE__*/_jsx("rect", {
x: "14",
width: "1",
height: "3",
rx: ".5"
}), /*#__PURE__*/_jsx("rect", {
x: "2",
y: "8",
width: "1",
height: "8",
rx: ".5"
}), /*#__PURE__*/_jsx("rect", {
x: "8",
y: "12",
width: "1",
height: "4",
rx: ".5"
}), /*#__PURE__*/_jsx("rect", {
x: "14",
y: "6",
width: "1",
height: "10",
rx: ".5"
}), /*#__PURE__*/_jsx("path", {
d: "M2.5 8.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0-1a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm6 5a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0-1a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm6-5a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0-1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z",
fillRule: "nonzero"
})]
})]
}));
});