Files
mobile-darmasaba/components/labelStatus.tsx
amel d923d10290 upd: discussion
Deskripsi:
- ui list diskusi

No Issues
2025-03-04 10:19:39 +08:00

17 lines
625 B
TypeScript

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