| Property | Type | Required | Default | Description |
|---|---|---|---|---|
filter |
string |
✅ | - | File type filter to open file picker with |
icon |
keyof IconPack1 |
✅ | - | Icon |
iconPack |
IconPack1 |
❌ | defaultIconPack |
Icon pack |
label |
string |
✅ | - | Label for tooltip |
t |
RtkI18n1 |
❌ | useLanguage() |
Language |
import { RtkFilePickerButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkFilePickerButton />;
}import { RtkFilePickerButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkFilePickerButton
filter="example"
icon={defaultIconPack}
label="example"
/>
);
}