We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a420cc6 commit 3e371a1Copy full SHA for 3e371a1
src/componentsV2/base/SelectionDropdown/index.tsx
@@ -1,6 +1,7 @@
1
import { Select } from 'heroui-native'
2
import type { FC } from 'react'
3
import React from 'react'
4
+import type { SFSymbol } from 'sf-symbols-typescript'
5
6
interface SelectOption {
7
value: string
@@ -11,6 +12,10 @@ export interface SelectionDropdownItem {
11
12
id?: string
13
key?: string
14
label: React.ReactNode | string
15
+ icon?: React.ReactNode
16
+ iOSIcon?: SFSymbol | string
17
+ isSelected?: boolean
18
+ destructive?: boolean
19
onSelect?: () => void
20
}
21
0 commit comments