import { ColorsStatus } from "@/constants/ColorsStatus"; import Styles from "@/constants/Styles"; import { AntDesign } from "@expo/vector-icons"; import Text from "./Text"; import { View } from "react-native"; type Props = { text?: string, title?: string } export default function SectionCancel({ text, title }: Props) { return ( {title ? title : 'Kegiatan Dibatalkan'} { text && ( {text} ) } ) }