Skip to content

RtkClock

Last updated View as MarkdownAgent setup

Shows the time elapsed in a meeting.

Properties

Property Type Required Default Description
iconPack IconPack defaultIconPack Icon pack
meeting Meeting - Meeting object
size Size - Size

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkClock
      meeting={meeting}
      size="md"
    />
  );
}

Was this helpful?