decentraland-ui
Version:
Decentraland's UI components and styles
23 lines (22 loc) • 958 B
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = __importDefault(require("react"));
var NewNotification = function (props) {
return (react_1.default.createElement("svg", __assign({ width: "12", height: "12", viewBox: "0 0 12 12", fill: "none" }, props),
react_1.default.createElement("circle", { cx: "6", cy: "6", r: "6", fill: "#FF2D55" })));
};
exports.default = NewNotification;