UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

38 lines (33 loc) 2.67 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('&-InheritedSettingsIcon'); export var InheritedSettingsIcon = function InheritedSettingsIcon(_ref) { var className = _ref.className, passThroughs = _objectWithoutProperties(_ref, ["className"]); return /*#__PURE__*/React.createElement(Icon, _extends({}, omitProps(passThroughs, undefined, _keys(InheritedSettingsIcon.propTypes), false), _pick(passThroughs, _keys(InheritedSettingsIcon.propTypes)), { className: cx('&', className) }), /*#__PURE__*/React.createElement("circle", { cx: "8", cy: "3.25", r: "2.75" }), /*#__PURE__*/React.createElement("path", { d: "M2.75 15.5C3.993 15.5 5 14.493 5 13.25S3.993 11 2.75 11 .5 12.007.5 13.25s1.007 2.25 2.25 2.25zM13.25 15.5c1.243 0 2.25-1.007 2.25-2.25S14.493 11 13.25 11 11 12.007 11 13.25s1.007 2.25 2.25 2.25zM2.75 10.75V8.5h10.5v2.25M8 8.25v-2" })); }; InheritedSettingsIcon.displayName = 'InheritedSettingsIcon'; InheritedSettingsIcon.peek = { description: "\n\t\tAn icon that indicates when settings are inherited.\n\t", categories: ['visual design', 'icons'], extend: 'Icon', madeFrom: ['Icon'] }; InheritedSettingsIcon.propTypes = iconPropTypes; InheritedSettingsIcon.defaultProps = Icon.defaultProps; export default InheritedSettingsIcon;