UNPKG

zeed-dynamic-table

Version:

A flexible and dynamic table component for React and Next.js applications without Tailwind dependencies

13 lines (12 loc) 448 B
import React, { HTMLProps, ReactNode } from "react"; type TopContentRightBaseProps = { children: ReactNode; rightBaseProps?: HTMLProps<HTMLDivElement>; }; /** * TopContentRightBase is the right section of the top controls * Typically contains the add button and other action buttons * Improved with better responsive behavior */ declare const TopContentRightBase: React.FC<TopContentRightBaseProps>; export default TopContentRightBase;