Live video on the AT Protocol
1import { Text } from "@streamplace/components";
2import { TextStyle } from "react-native";
3
4interface TitleProps {
5 children: React.ReactNode;
6 style?: TextStyle;
7}
8
9export default function Title({ children, style, ...props }: TitleProps) {
10 return (
11 <Text size="3xl" style={[style as any]} {...props}>
12 {children}
13 </Text>
14 );
15}