(props: PlanContentProps)
| 115 | export type PlanContentProps = ComponentProps<typeof CardContent>; |
| 116 | |
| 117 | export const PlanContent = (props: PlanContentProps) => ( |
| 118 | <CollapsibleContent asChild> |
| 119 | <CardContent data-slot="plan-content" {...props} /> |
| 120 | </CollapsibleContent> |
| 121 | ); |
| 122 | |
| 123 | export type PlanFooterProps = ComponentProps<"div">; |
| 124 |
nothing calls this directly
no outgoing calls
no test coverage detected