デザインシステムの色、フォントファミリー、フォントサイズを適用するテーマ付きテキストコンポーネントです。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
children |
ReactNode |
✅ | - | テキストコンテンツ |
size |
'sm' | 'md' | 'lg' | 'xl' |
❌ | 'md' |
フォントサイズ(sm=14、md=16、lg=18、xl=20) |
fontWeight |
'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' |
❌ | 'normal' |
フォントの太さ |
style |
StyleProp<TextStyle> |
❌ | \{\} |
カスタムテキストスタイル |
onBrand |
boolean |
❌ | false |
デフォルトのテキスト色の代わりにブランドテキスト色を使う |
import { RtkText } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkText>Hello World</RtkText>;
}import { RtkText } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkText size="lg" fontWeight="bold" onBrand={true}>
Meeting Title
</RtkText>
);
}