import { ColorsStatus } from "@/constants/ColorsStatus"; import Styles from "@/constants/Styles"; import { Text, View } from "react-native"; type Props = { category: 'error' | 'success' | 'warning' | 'primary' text: string size: 'small' | 'default' } export default function LabelStatus({ category, text, size }: Props) { return ( {text} ) }