UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

36 lines (31 loc) 2.63 kB
import _pick from "lodash/pick"; import _keys from "lodash/keys"; function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } 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; } import React from 'react'; import Icon, { propTypes as iconPropTypes } from '../Icon'; import { lucidClassNames } from '../../../util/style-helpers'; import { omitProps } from '../../../util/component-types'; var cx = lucidClassNames.bind('&-UnlinkedIcon'); export var UnlinkedIcon = function UnlinkedIcon(_ref) { var className = _ref.className, passThroughs = _objectWithoutProperties(_ref, ["className"]); return /*#__PURE__*/React.createElement(Icon, _extends({}, omitProps(passThroughs, undefined, _keys(UnlinkedIcon.propTypes), false), _pick(passThroughs, _keys(iconPropTypes)), { className: cx('&', className) }), /*#__PURE__*/React.createElement("path", { d: "M5.5 3.5l-1-2m8 9l2 1m-4 1l1 2m-8-9l-2-1" }), /*#__PURE__*/React.createElement("path", { d: "M10.232 7.768a2.993 2.993 0 0 0 2.979-.737l1.414-1.414a3.009 3.009 0 0 0 0-4.243 3.009 3.009 0 0 0-4.243 0L8.968 2.789c-.804.804-1.04 1.956-.737 2.979M5.769 8.231c-1.023-.303-2.176-.067-2.98.737l-1.414 1.414a3.009 3.009 0 0 0 0 4.243 3.009 3.009 0 0 0 4.243 0l1.414-1.414c.804-.804 1.04-1.956.737-2.979" })); }; UnlinkedIcon.displayName = 'UnlinkedIcon'; UnlinkedIcon.peek = { description: "\n\t\tFor all those times you just need to break away.\n\t", categories: ['visual design', 'icons'], extend: 'Icon', madeFrom: ['Icon'] }; UnlinkedIcon.propTypes = iconPropTypes; UnlinkedIcon.defaultProps = Icon.defaultProps; export default UnlinkedIcon;