diff options
Diffstat (limited to 'src/components/ProgressGuide/Task.tsx')
-rw-r--r-- | src/components/ProgressGuide/Task.tsx | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/components/ProgressGuide/Task.tsx b/src/components/ProgressGuide/Task.tsx index 973ee1ac7..b9ba3fd9a 100644 --- a/src/components/ProgressGuide/Task.tsx +++ b/src/components/ProgressGuide/Task.tsx @@ -10,11 +10,13 @@ export function ProgressGuideTask({ total, title, subtitle, + tabularNumsTitle, }: { current: number total: number title: string subtitle?: string + tabularNumsTitle?: boolean }) { const t = useTheme() @@ -33,8 +35,16 @@ export function ProgressGuideTask({ /> )} - <View style={[a.flex_col, a.gap_2xs, {marginTop: -2}]}> - <Text style={[a.text_sm, a.font_bold, a.leading_tight]}>{title}</Text> + <View style={[a.flex_col, a.gap_2xs, subtitle && {marginTop: -2}]}> + <Text + style={[ + a.text_sm, + a.font_bold, + a.leading_tight, + tabularNumsTitle && {fontVariant: ['tabular-nums']}, + ]}> + {title} + </Text> {subtitle && ( <Text style={[a.text_sm, t.atoms.text_contrast_medium, a.leading_tight]}> |