({ children, ...props }: { children?: React.ReactNode })
| 84 | ); |
| 85 | }, |
| 86 | table({ children, ...props }: { children?: React.ReactNode }) { |
| 87 | return ( |
| 88 | <div className="overflow-x-auto my-6 rounded-md"> |
| 89 | <table className="min-w-full text-sm border-collapse" {...props}> |
| 90 | {children} |
| 91 | </table> |
| 92 | </div> |
| 93 | ); |
| 94 | }, |
| 95 | thead({ children, ...props }: { children?: React.ReactNode }) { |
| 96 | return <thead className="bg-gray-100 dark:bg-gray-800" {...props}>{children}</thead>; |
| 97 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected