lucid-ui
Version:
A UI component library from AppNexus.
38 lines (33 loc) • 2.62 kB
JavaScript
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('&-SettingsIcon');
export var SettingsIcon = function SettingsIcon(_ref) {
var className = _ref.className,
passThroughs = _objectWithoutProperties(_ref, ["className"]);
return /*#__PURE__*/React.createElement(Icon, _extends({}, omitProps(passThroughs, undefined, _keys(SettingsIcon.propTypes), false), _pick(passThroughs, _keys(iconPropTypes)), {
className: cx('&', className)
}), /*#__PURE__*/React.createElement("path", {
d: "M2.254 13.052l1.733-.999A5.702 5.702 0 0 0 6.5 13.501V15.5h3v-1.999a5.708 5.708 0 0 0 2.513-1.451l1.733.999 1.5-2.599-1.733-.998c.25-.951.25-1.951 0-2.902l1.732-1.001-1.499-2.599-1.733 1A5.707 5.707 0 0 0 9.5 2.502V.5h-3v2.002a5.696 5.696 0 0 0-2.513 1.45l-1.726-1L.76 5.553l1.727.997a5.708 5.708 0 0 0 0 2.902L.755 10.453l1.499 2.599z"
}), /*#__PURE__*/React.createElement("circle", {
cx: "8",
cy: "8",
r: "2.5"
}));
};
SettingsIcon.displayName = 'SettingsIcon';
SettingsIcon.peek = {
description: "\n\t\tA settings icon.\n\t",
categories: ['visual design', 'icons'],
extend: 'Icon',
madeFrom: ['Icon']
};
SettingsIcon.propTypes = iconPropTypes;
SettingsIcon.defaultProps = Icon.defaultProps;
export default SettingsIcon;