17 lines
675 B
TypeScript
17 lines
675 B
TypeScript
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 (
|
|
<View style={[size == "small" ? Styles.labelStatusSmall : Styles.labelStatus, ColorsStatus[category], Styles.round10]}>
|
|
<Text style={[size == "small" ? Styles.textSmallSemiBold : Styles.textMediumSemiBold, Styles.cWhite, { textAlign: 'center' }]}>{text}</Text>
|
|
</View>
|
|
)
|
|
} |