From e1550a7021870061e239f6cec48ab11caf740377 Mon Sep 17 00:00:00 2001 From: Britta Evans-Fenton Date: Wed, 29 May 2024 16:07:18 +0100 Subject: [PATCH] Add optional alt prop to POS image --- .../src/surfaces/point-of-sale/components/Image/Image.ts | 1 + 1 file changed, 1 insertion(+) 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');