2024-07-24 20:41:46 +00:00
|
|
|
import { ComponentProps } from "react";
|
|
|
|
|
2024-09-23 15:55:39 +00:00
|
|
|
export default function TitleContainer({ children }: ComponentProps<"div">) {
|
2024-07-24 20:41:46 +00:00
|
|
|
let classes = "w-full text-left m-auto"
|
|
|
|
if (children == "RECORD DELETED") {
|
|
|
|
classes = classes + " text-destructive font-bold"
|
|
|
|
}
|
|
|
|
return <span className="h-10 flex align-center"><p className={classes}>{children}</p></span>
|
|
|
|
}
|