@xetwa/design-system 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -212,7 +212,11 @@ export const MainButton = React.forwardRef<React.ElementRef<typeof Pressable>, M
|
|
|
212
212
|
/>
|
|
213
213
|
)}
|
|
214
214
|
|
|
215
|
-
<Typography
|
|
215
|
+
<Typography
|
|
216
|
+
style={textStyles}
|
|
217
|
+
variant={size === 'lg' ? 'btnLg' : size === 'sm' ? 'btnSm' : 'btnMd'}
|
|
218
|
+
weight={weight}
|
|
219
|
+
>
|
|
216
220
|
{children}
|
|
217
221
|
</Typography>
|
|
218
222
|
</Pressable>
|
|
@@ -56,7 +56,7 @@ export const SelectionCard = ({
|
|
|
56
56
|
{iconNode}
|
|
57
57
|
</View>
|
|
58
58
|
)}
|
|
59
|
-
<Typography style={[styles.label, { fontSize: scaleText(16) }]}>{label}</Typography>
|
|
59
|
+
<Typography weight="bold" style={[styles.label, { fontSize: scaleText(16) }]}>{label}</Typography>
|
|
60
60
|
</Pressable>
|
|
61
61
|
);
|
|
62
62
|
};
|