@magicbell/magicbell-react
Version:
React components for building a notification inbox for your app
16 lines • 642 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = CloseIcon;
const tslib_1 = require("tslib");
const react_1 = tslib_1.__importDefault(require("react"));
/**
* Close icon.
*
* @example
* <CloseIcon />
*/
function CloseIcon() {
return (react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", width: "18px", height: "18px", viewBox: "0 0 24 24", stroke: "currentColor" },
react_1.default.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" })));
}
//# sourceMappingURL=CloseIcon.js.map