URL(SVG 形式)からロゴを読み込み、ミーティングヘッダーに表示します。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
meeting |
any |
❌ | - | RealtimeKit のミーティングインスタンス |
config |
UIConfig |
❌ | - | UI 設定オブジェクト |
logoUrl |
string |
❌ | - | 表示するロゴ SVG の URL |
style |
StyleProps |
❌ | - | ロゴの幅 / 高さを指定するスタイルオブジェクト |
t |
RtkI18n |
❌ | - | i18n 翻訳関数 |
import { RtkLogo } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkLogo logoUrl="https://example.com/logo.svg" />;
}import { RtkLogo } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkLogo
logoUrl="https://example.com/logo.svg"
style={{ width: 120, height: 40 }}
config={customConfig}
/>
);
}