UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

8 lines (7 loc) 245 B
import type { PropsWithChildren } from 'react'; interface CellProps { selected?: boolean; sticky?: boolean; } declare function Cell({ children, selected, sticky, }: PropsWithChildren<CellProps>): JSX.Element; export default Cell;