@atlaskit/icon
Version:
An icon is a symbol representing a command, device, directory, or common action.
14 lines (13 loc) • 946 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
var _base = require("@atlaskit/icon/base");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
const MediaServicesPresentationIcon = props => /*#__PURE__*/_react.default.createElement(_base.Icon, Object.assign({
dangerouslySetGlyph: `<svg width="24" height="24" viewBox="0 0 24 24" role="presentation"><g fill-rule="evenodd"><rect width="16" height="16" x="4" y="4" fill="currentcolor" rx="2"/><rect width="2" height="3" x="8" y="12" fill="inherit" rx="1"/><rect width="2" height="5" x="11" y="10" fill="inherit" rx="1"/><rect width="2" height="7" x="14" y="8" fill="inherit" rx="1"/></g></svg>`
}, props));
MediaServicesPresentationIcon.displayName = 'MediaServicesPresentationIcon';
var _default = exports.default = MediaServicesPresentationIcon;