Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -272,14 +272,12 @@ export default function PopoverExample() {
<Popover>
<Popover.Trigger asChild>
<Button variant="tertiary" size="sm">
<Button.StartContent>
<Ionicons
name="information-circle"
size={20}
color={themeColorMuted}
/>
</Button.StartContent>
<Button.LabelContent>Show Info</Button.LabelContent>
<Ionicons
name="information-circle"
size={20}
color={themeColorMuted}
/>
<Button.Label>Show Info</Button.Label>
</Button>
</Popover.Trigger>
<Popover.Portal>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ You can now select multiple colors at once, which is useful when you need to wor
import { useThemeColor } from 'heroui-native';

// Select multiple colors at once
const { accent, accentForeground, success, danger } = useThemeColor([
const [accent, accentForeground, success, danger] = useThemeColor([
'accent',
'accentForeground',
'success',
Expand Down
Loading