13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Rect = void 0;
|
|
const util_1 = require("./util");
|
|
exports.Rect = (0, util_1.createShape)('rect', {
|
|
attrs: {
|
|
body: {
|
|
refWidth: '100%',
|
|
refHeight: '100%',
|
|
},
|
|
},
|
|
});
|
|
//# sourceMappingURL=rect.js.map
|