diff --git a/ts/components/basic/SessionButton.tsx b/ts/components/basic/SessionButton.tsx index 5c1aaff44..caca18ef1 100644 --- a/ts/components/basic/SessionButton.tsx +++ b/ts/components/basic/SessionButton.tsx @@ -114,6 +114,7 @@ const StyledButton = styled.button<{ export type SessionButtonProps = { text?: string; + ariaLabel?: string; disabled?: boolean; buttonType?: SessionButtonType; buttonShape?: SessionButtonShape; @@ -137,6 +138,7 @@ export const SessionButton = (props: SessionButtonProps) => { dataTestId, buttonColor, text, + ariaLabel, disabled = false, onClick = null, margin, @@ -152,6 +154,7 @@ export const SessionButton = (props: SessionButtonProps) => { return (