import { FileTextIcon } from "lucide-react"; import { ClinicalPanel } from "@/shared/ui/clinical-panel"; import { Container } from "@/shared/ui/container"; type InfoItem = { title: string; text: string }; export function InfoColumns({ title, items }: { title: string; items: readonly InfoItem[] }) { return (

{title}

{items.map((item) => (

{item.title}

{item.text}

))}
); }