import * as React from "react"; import { Text, TextStyle, StyleSheet, TextProps } from "react-native"; interface Props extends TextProps { variant: "body1" | "body2" | "title1" | "title2" | "title3" | "title4"; children: any; color?: string; align?: "center" | "left" | "right" | "auto" | "justify"; } const styles = StyleSheet.create({ body1: { fontSize: 18 }, body2: { fontSize: 15 }, title1: { fontSize: 50 }, title2: { fontSize: 32 }, title3: { fontSize: 27 }, title4: { fontSize: 22 }, }); function Typography(props: Props) { const { variant, children, color } = props; return ( {children} ); } export default Typography;