We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986e9ad commit 6e70969Copy full SHA for 6e70969
app/src/molecules/InterventionModal/ModalContentOneColSimpleButtons.tsx
@@ -24,6 +24,7 @@ export interface ModalContentOneColSimpleButtonsProps {
24
buttons: ButtonProps[]
25
onSelect?: ChangeEventHandler<HTMLInputElement>
26
initialSelected?: string
27
+ subText?: string
28
}
29
30
export function ModalContentOneColSimpleButtons(
@@ -56,6 +57,15 @@ export function ModalContentOneColSimpleButtons(
56
57
}}
58
/>
59
))}
60
+ {props.subText != null ? (
61
+ <LegacyStyledText
62
+ fontSize={TYPOGRAPHY.fontSize22}
63
+ fontWeight={TYPOGRAPHY.fontWeightRegular}
64
+ lineHeight={TYPOGRAPHY.lineHeight28}
65
+ >
66
+ {props.subText}
67
+ </LegacyStyledText>
68
+ ) : null}
69
</Flex>
70
71
</OneColumn>
0 commit comments