How to override the built-in image component

Built-in components in Builder are registered through the same registry as your custom components and can be overridden by registering a component over the same name.

So for overriding the built-in image component, you’d want to register over the same name, and make sure your new component accept the same inputs as the built-in one

Builder.registerComomponent(YourImage, {
  name: 'Image', <- this
  …
})