Skip to content
Cloudflare Docs

RtkEmojiPickerButton

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPack1defaultIconPackIcon pack
isActiveboolean-Active state indicator
tRtkI18n1useLanguage()Language

Usage Examples

Basic Usage

import { RtkEmojiPickerButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkEmojiPickerButton />;
}

With Properties

import { RtkEmojiPickerButton } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkEmojiPickerButton
isActive={true}
/>
);
}