image.js 307 B

12345678910111213
  1. import { getImageUrlHook, createShape } from './util';
  2. export const Image = createShape('image', {
  3. attrs: {
  4. image: {
  5. refWidth: '100%',
  6. refHeight: '100%',
  7. },
  8. },
  9. propHooks: getImageUrlHook(),
  10. }, {
  11. selector: 'image',
  12. });
  13. //# sourceMappingURL=image.js.map