UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

39 lines (34 loc) 2.53 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('&-StarIcon'); export var StarIcon = function StarIcon(_ref) { var className = _ref.className, isClickable = _ref.isClickable, isDisabled = _ref.isDisabled, passThroughs = _objectWithoutProperties(_ref, ["className", "isClickable", "isDisabled"]); return /*#__PURE__*/React.createElement(Icon, _extends({}, omitProps(passThroughs, undefined, _keys(StarIcon.propTypes), false), _pick(passThroughs, _keys(iconPropTypes)), { isDisabled: isDisabled, isClickable: isClickable, className: cx('&', isClickable && '&-is-clickable', isDisabled && '&-is-disabled', className) }), /*#__PURE__*/React.createElement("path", { className: cx('&-background'), d: "M8 .75l2.318 4.696 5.182.753-3.75 3.655.885 5.162L8 12.579l-4.635 2.437.885-5.162L.5 6.199l5.182-.753z" })); }; StarIcon.displayName = 'StarIcon'; StarIcon.peek = { description: "\n\t\tYou're a shooting star!\n\t", categories: ['visual design', 'icons'], extend: 'Icon', madeFrom: ['Icon'] }; StarIcon.propTypes = iconPropTypes; StarIcon.defaultProps = Icon.defaultProps; export default StarIcon;