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