({
children,
sticky = false,
}: {
children: React.ReactNode
sticky?: boolean
})
| 66 | } |
| 67 | |
| 68 | export function Col({ |
| 69 | children, |
| 70 | sticky = false, |
| 71 | }: { |
| 72 | children: React.ReactNode |
| 73 | sticky?: boolean |
| 74 | }) { |
| 75 | return ( |
| 76 | <div |
| 77 | className={clsx( |
| 78 | '[&>:first-child]:mt-0 [&>:last-child]:mb-0', |
| 79 | sticky && 'xl:sticky xl:top-24', |
| 80 | )} |
| 81 | > |
| 82 | {children} |
| 83 | </div> |
| 84 | ) |
| 85 | } |
| 86 | |
| 87 | export function Properties({ children }: { children: React.ReactNode }) { |
| 88 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected