UNPKG

@devbookhq/ui

Version:

Devbook UI is a React UI library

8 lines (7 loc) 218 B
import { ReactNode } from 'react'; export interface Props { children?: ReactNode; rounded?: boolean; } declare function CellHeader({ children, rounded, }: Props): JSX.Element; export default CellHeader;