UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

9 lines (8 loc) 284 B
import { ViewProps } from "@vnxjs/components/types/View"; import { ReactNode } from "react"; interface CellValueProps extends ViewProps { alone?: boolean; children: ReactNode; } declare function CellValue(props: CellValueProps): JSX.Element; export default CellValue;