Skip to content

Commit d5a9672

Browse files
committedFeb 13, 2025
feat(button): add textWeight property
1 parent 4d13a1a commit d5a9672

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎src/core/primitives/button/button.tsx

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import {ThemeFontWeightKey} from '@sanity/ui/theme'
12
import {forwardRef, isValidElement, useMemo} from 'react'
23
import {isValidElementType} from 'react-is'
34
import {styled} from 'styled-components'
@@ -29,9 +30,10 @@ export interface ButtonProps extends ResponsivePaddingProps, ResponsiveRadiusPro
2930
loading?: boolean
3031
selected?: boolean
3132
space?: number | number[]
32-
textAlign?: ButtonTextAlign
3333
muted?: boolean
3434
text?: React.ReactNode
35+
textAlign?: ButtonTextAlign
36+
textWeight?: ThemeFontWeightKey
3537
tone?: ButtonTone
3638
type?: 'button' | 'reset' | 'submit'
3739
width?: ButtonWidth
@@ -85,6 +87,7 @@ export const Button = forwardRef(function Button(
8587
space: spaceProp = 3,
8688
text,
8789
textAlign,
90+
textWeight,
8891
tone = 'default',
8992
type = 'button',
9093
muted = false,
@@ -155,7 +158,7 @@ export const Button = forwardRef(function Button(
155158
align={textAlign}
156159
size={fontSize}
157160
textOverflow="ellipsis"
158-
weight={button.textWeight}
161+
weight={textWeight ?? button.textWeight}
159162
>
160163
{text}
161164
</Text>

0 commit comments

Comments
 (0)
Please sign in to comment.