import { ReactNode } from 'react'; interface FieldProps { label: ReactNode; children: ReactNode; isEditing?: boolean; } export function Field({ label, children, isEditing = false }: FieldProps) { return (
{label}
{children}
); } interface FieldLabelProps { children: ReactNode; } export function FieldLabel({ children }: FieldLabelProps) { return

{children}

; } interface FieldValueProps { children: ReactNode; className?: string; } export function FieldValue({ children, className = '' }: FieldValueProps) { return

{children}

; } interface FieldActionsProps { children: ReactNode; } export function FieldActions({ children }: FieldActionsProps) { return
{children}
; }