import { Text } from 'react-native'; export const RegularText = ({ style, children, ...rest }: Text['props']) => { return ( {children} ); }; export const BoldText = ({ style, children, ...rest }: Text['props']) => { return ( {children} ); }; export const SemiBoldText = ({ style, children, ...rest }: Text['props']) => { return ( {children} ); }; export const MediumText = ({ style, children, ...rest }: Text['props']) => { return ( {children} ); }; export const ExtraBoldText = ({ style, children, ...rest }: Text['props']) => { return ( {children} ); }; export const LightText = ({ style, children, ...rest }: Text['props']) => { return ( {children} ); };