9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface TableRowProps extends HTMLChakraProps<"tr"> {
|
|
}
|
|
declare const Tr: _chakra_ui_system.ComponentWithAs<"tr", TableRowProps>;
|
|
|
|
export { TableRowProps, Tr };
|