@neynar/ui
Version:
React UI component library built on shadcn/ui and Tailwind CSS
41 lines (31 loc) • 868 B
Markdown
# TableFooter
**Type**: component
TableFooter - Container for table footer rows Used for summary rows, totals, or additional table information. Styled with a muted background and top border to distinguish from data rows. Typically contains aggregated data or table-wide information.
## JSX Usage
```jsx
import { TableFooter } from '@neynar/ui';
<TableFooter
className="value"
>
{/* Your content here */}
</TableFooter>
```
## Component Props
### className
- **Type**: `string`
- **Required**: No
- **Description**: No description available
### children
- **Type**: `React.ReactNode`
- **Required**: No
- **Description**: No description available
## Examples
```tsx
<TableFooter>
<TableRow>
<TableCell>Total Users</TableCell>
<TableCell>15,767</TableCell>
<TableCell className="text-right">+9.25%</TableCell>
</TableRow>
</TableFooter>
```