chore(components): improve tsdoc

This commit is contained in:
Benjamin Canac
2025-03-04 11:58:31 +01:00
parent 629c54261a
commit 25e503bc83
38 changed files with 274 additions and 1 deletions

View File

@@ -19,9 +19,22 @@ export interface PinInputProps extends Pick<PinInputRootProps, 'defaultValue' |
* @defaultValue 'div'
*/
as?: any
/**
* @defaultValue 'primary'
*/
color?: PinInputVariants['color']
/**
* @defaultValue 'outline'
*/
variant?: PinInputVariants['variant']
/**
* @defaultValue 'md'
*/
size?: PinInputVariants['size']
/**
* The number of input fields.
* @defaultValue 5
*/
length?: number | string
highlight?: boolean
class?: any