We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b64687 commit 46eb68eCopy full SHA for 46eb68e
examples/landing/components/selectors/Text/TextSettings.tsx
@@ -12,7 +12,7 @@ export const TextSettings = () => {
12
props={['fontSize', 'fontWeight', 'textAlign']}
13
summary={({ fontSize, fontWeight, textAlign }: any) => {
14
return `${fontSize || ''}, ${weightDescription(
15
- fontWeight
+ parseInt(fontWeight)
16
)}, ${capitalize(textAlign)}`;
17
}}
18
>
0 commit comments