react-common-use-components
Version:
A React mobile commonly used component library
25 lines (24 loc) • 1.41 kB
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 SlideBlockIcon = function (_a) {
var style = _a.style, onMouseDown = _a.onMouseDown;
return (react_1.default.createElement("svg", { version: "1.1", style: __assign(__assign({}, style), { display: 'block', margin: 'auto' }), viewBox: "0 0 1024 1024", xmlns: "http://www.w3.org/2000/svg", width: "64", height: "64", onMouseDown: onMouseDown },
react_1.default.createElement("path", { d: "M512 512m-393.728 0a393.728 393.728 0 1 0 787.456 0 393.728 393.728 0 1 0-787.456 0Z", fill: "#3089E7" }),
react_1.default.createElement("path", { d: "M512 1024a512 512 0 1 1 512-512 512 512 0 0 1-512 512z m0-787.712A275.712 275.712 0 1 0 787.712 512 275.968 275.968 0 0 0 512 236.288z", fill: "#FFFFFF" })));
};
exports.default = SlideBlockIcon;
;