UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

72 lines (64 loc) 4.44 kB
import _pick from "lodash/pick"; import _keys from "lodash/keys"; 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; } 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'; import { Color } from '../Icon'; import PropTypes from 'react-peek/prop-types'; var cx = lucidClassNames.bind('&-DotsIcon'); var oneOf = PropTypes.oneOf; export var DotsIcon = function DotsIcon(_ref) { var className = _ref.className, _ref$direction = _ref.direction, direction = _ref$direction === void 0 ? 'horizontal' : _ref$direction, _ref$color = _ref.color, color = _ref$color === void 0 ? Color.primary : _ref$color, passThroughs = _objectWithoutProperties(_ref, ["className", "direction", "color"]); var isVerticalOrientation = direction === 'vertical'; var leftOrTopPosition = { cx: isVerticalOrientation ? '8' : '14.5', cy: isVerticalOrientation ? '14.5' : '8' }; var rightOrBottomPosition = { cx: isVerticalOrientation ? '8' : '1.5', cy: isVerticalOrientation ? '1.5' : '8' }; return /*#__PURE__*/React.createElement(Icon, _extends({}, omitProps(passThroughs, undefined, _keys(DotsIcon.propTypes), false), _pick(passThroughs, _keys(iconPropTypes)), { color: color, className: cx('&', className) }), /*#__PURE__*/React.createElement("circle", { className: cx("&-color-".concat(color)), cx: "8", cy: "8", r: "1" }), /*#__PURE__*/React.createElement("circle", _extends({ className: cx("&-color-".concat(color)) }, leftOrTopPosition, { r: "1" })), /*#__PURE__*/React.createElement("circle", _extends({ className: cx("&-color-".concat(color)) }, rightOrBottomPosition, { r: "1" }))); }; DotsIcon.displayName = 'DotsIcon'; DotsIcon.peek = { description: "\n\t\tThree dots in a row.\n\t", categories: ['visual design', 'icons'], extend: 'Icon', madeFrom: ['Icon'] }; DotsIcon.propTypes = _objectSpread(_objectSpread({}, iconPropTypes), {}, { direction: oneOf(['vertical', 'horizontal']) }); DotsIcon.defaultProps = _objectSpread(_objectSpread({}, Icon.defaultProps), {}, { direction: 'horizontal' }); export default DotsIcon;