UNPKG

retabler

Version:

React Component library via Tabler

8 lines (7 loc) 244 B
import * as React from "react"; export interface TableRowProps { className?: string; children: React.ReactNode; } declare function TableRow({ className, children, ...props }: TableRowProps): JSX.Element; export default TableRow;