8 lines
287 B
TypeScript
8 lines
287 B
TypeScript
|
|
declare namespace JSX {
|
||
|
|
interface IntrinsicElements {
|
||
|
|
'appkit-button': { size?: 'sm' | 'md'; label?: string; loadingLabel?: string; disabled?: boolean };
|
||
|
|
'appkit-network-button': Record<string, unknown>;
|
||
|
|
'appkit-account-button': { balance?: 'show' | 'hide' };
|
||
|
|
}
|
||
|
|
}
|