lucid-ui
Version:
A UI component library from AppNexus.
34 lines (29 loc) • 2.43 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('&-AttachIcon');
export var AttachIcon = function AttachIcon(_ref) {
var className = _ref.className,
passThroughs = _objectWithoutProperties(_ref, ["className"]);
return /*#__PURE__*/React.createElement(Icon, _extends({}, omitProps(passThroughs, undefined, _keys(AttachIcon.propTypes), false), _pick(passThroughs, _keys(iconPropTypes)), {
className: cx('&', className)
}), /*#__PURE__*/React.createElement("path", {
d: "M12.606 10.189l-4.171 4.152a3.988 3.988 0 0 1-5.621 0 4.454 4.454 0 0 1 0-6.319l6.678-6.649a3.002 3.002 0 0 1 4.231 0 2.63 2.63 0 0 1 0 3.731l-7.162 7.131a1.33 1.33 0 0 1-1.874 0 1.485 1.485 0 0 1 0-2.106l4.926-4.904"
}));
};
AttachIcon.displayName = 'AttachIcon';
AttachIcon.peek = {
description: "\n\t\tA link/attach icon, used for indicating an attachment.\n\t",
categories: ['visual design', 'icons'],
extend: 'Icon',
madeFrom: ['Icon']
};
AttachIcon.propTypes = iconPropTypes;
AttachIcon.defaultProps = Icon.defaultProps;
export default AttachIcon;