Skip to content

RtkLogo

Last updated View as MarkdownAgent setup

A component which loads the logo from your config, or via the logo-url attribute.

Properties

Property Type Required Default Description
config UIConfig createDefaultConfig() Config object
logoUrl string - Logo URL
meeting Meeting - Meeting object
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkLogo
      logoUrl="example"
      meeting={meeting}
    />
  );
}

Was this helpful?