({children, ...props}: DisclosurePanelProps)
| 71 | } |
| 72 | |
| 73 | export function DisclosurePanel({children, ...props}: DisclosurePanelProps) { |
| 74 | return ( |
| 75 | <AriaDisclosurePanel |
| 76 | {...props} |
| 77 | className={composeTailwindRenderProps( |
| 78 | props.className, |
| 79 | 'h-(--disclosure-panel-height) motion-safe:transition-[height] overflow-clip' |
| 80 | )}> |
| 81 | <div className="px-4 py-2">{children}</div> |
| 82 | </AriaDisclosurePanel> |
| 83 | ); |
| 84 | } |
nothing calls this directly
no test coverage detected