diff --git a/packages/ui-extensions/src/surfaces/point-of-sale/components/Image/Image.ts b/packages/ui-extensions/src/surfaces/point-of-sale/components/Image/Image.ts index 5c6453487..7d5a77037 100644 --- a/packages/ui-extensions/src/surfaces/point-of-sale/components/Image/Image.ts +++ b/packages/ui-extensions/src/surfaces/point-of-sale/components/Image/Image.ts @@ -2,6 +2,7 @@ import {createRemoteComponent} from '@remote-ui/core'; export interface ImageProps { src?: string; + alt?: string; } export const Image = createRemoteComponent<'Image', ImageProps>('Image');