import type { FieldShellProps } from "./types" import { Field, FieldLabel, FieldError, FieldDescription, } from "@/shared/components/ui/field" export function FieldShell({ label, error, description, required, children, }: FieldShellProps) { return ( {label && ( {label} {required && *} )} {children} {description && {description}} {error && {error}} ) }