import clsx from 'clsx'; import { type ComponentPropsWithoutRef, forwardRef } from 'react'; export function Section(props: ComponentPropsWithoutRef<'div'>) { return
; } export function SectionHeader(props: ComponentPropsWithoutRef<'div'>) { return ( ); } export function SectionHeaderContent(props: ComponentPropsWithoutRef<'div'>) { return ( ); } export const SectionBody = forwardRef(function SectionBody( props: ComponentPropsWithoutRef<'div'>, ref: React.ForwardedRef