File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/sdk/packages/xns/src/components/XnsNameCapture Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export interface XnsNameCaptureBaseProps {
3232 autoFocus ?: boolean
3333 buttonText ?: string
3434 defaultXnsName ?: string
35+ disabled ?: boolean
3536 errorUi ?: 'alert' | 'toast'
3637 mobileButtonText ?: string
3738 onNameChange ?: ( name : string ) => void
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export const XnsNameCapture: React.FC<XnsNameCaptureProps> = ({
1818 buttonText = 'Buy My Name' ,
1919 children,
2020 defaultXnsName,
21+ disabled,
2122 errorUi = 'alert' ,
2223 funnel = 'xns' ,
2324 intent = 'unset' ,
@@ -72,6 +73,7 @@ export const XnsNameCapture: React.FC<XnsNameCaptureProps> = ({
7273 < FlexRow gap = { 1 } >
7374 < XnsEstimateNameTextField
7475 autoFocus = { autoFocus }
76+ disabled = { disabled }
7577 label = "xNS Name"
7678 variant = "outlined"
7779 size = "small"
You can’t perform that action at this time.
0 commit comments