import type { PropsWithChildren, ReactNode } from 'react'
import clsx from 'clsx'
type AdminFormSectionProps = PropsWithChildren<{
className?: string
contained?: boolean
description?: ReactNode
title: ReactNode
}>
export function AdminFormSection({ children, className, contained = true, description, title }: AdminFormSectionProps) {
return (
{title}
{description ?
{description}
: null}
{children}
)
}
type AdminFormActionsProps = PropsWithChildren<{
className?: string
helper?: ReactNode
sticky?: boolean
}>
export function AdminFormActions({ children, className, helper, sticky = false }: AdminFormActionsProps) {
return (
)
}