chore(CommandPalette): define placeholder from InputProps

This commit is contained in:
Benjamin Canac
2024-05-02 10:41:02 +02:00
parent d0017bf847
commit f039d1a7dd
2 changed files with 6 additions and 6 deletions

View File

@@ -16,6 +16,10 @@ export interface InputProps extends UseComponentIconsProps {
id?: string
name?: string
type?: InputHTMLAttributes['type']
/**
* The placeholder text when the input is empty.
* @defaultValue `'Type a command or search...'`
*/
placeholder?: string
color?: InputVariants['color']
variant?: InputVariants['variant']