Skip to content

RtkFilePickerButton

Last updated View as MarkdownAgent setup

Properties

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

Usage Examples

Basic Usage

import { RtkFilePickerButton } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return <RtkFilePickerButton />;
}

With Properties

import { RtkFilePickerButton } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return (
    <RtkFilePickerButton
      filter="example"
      icon={defaultIconPack}
      label="example"
    />
  );
}

Was this helpful?