13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
import { getImageUrlHook, createShape } from './util';
|
|
export const Image = createShape('image', {
|
|
attrs: {
|
|
image: {
|
|
refWidth: '100%',
|
|
refHeight: '100%',
|
|
},
|
|
},
|
|
propHooks: getImageUrlHook(),
|
|
}, {
|
|
selector: 'image',
|
|
});
|
|
//# sourceMappingURL=image.js.map
|