10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
import { createShape } from './util';
|
|
export const Rect = createShape('rect', {
|
|
attrs: {
|
|
body: {
|
|
refWidth: '100%',
|
|
refHeight: '100%',
|
|
},
|
|
},
|
|
});
|
|
//# sourceMappingURL=rect.js.map
|