6 lines
90 B
TypeScript
6 lines
90 B
TypeScript
type SelectItem = {
|
|
label: string
|
|
value: string
|
|
icon?: string
|
|
disabled?: boolean
|
|
} |