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