A menu list component.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
menuVariant |
'primary' | 'secondary' |
✅ | - | Variant |
t |
RtkI18n |
❌ | useLanguage() |
Language |
import { RtkMenuList } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkMenuList />;
}import { RtkMenuList } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkMenuList
menuVariant={'primary' | 'secondary'}
/>
);
}