@atlaskit/icon
Version:
An icon is a symbol representing a command, device, directory, or common action.
17 lines (16 loc) • 1.05 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
var _base = require("@atlaskit/icon/base");
var _share = _interopRequireDefault(require("@atlaskit/icon/core/share"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
const ShareIcon = props => /*#__PURE__*/_react.default.createElement(_base.IconFacade, Object.assign({
dangerouslySetGlyph: `<svg width="24" height="24" viewBox="0 0 24 24" role="presentation"><g fill="currentcolor" fill-rule="evenodd"><path fill-rule="nonzero" d="M6 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2m12-4a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2m0 14a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/><path d="m7 13.562 8.66 5 1-1.732-8.66-5z"/><path d="m7 10.83 1 1.732 8.66-5-1-1.732z"/></g></svg>`
}, props, {
newIcon: _share.default
}));
ShareIcon.displayName = 'ShareIcon';
var _default = exports.default = ShareIcon;