@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
17 lines (16 loc) • 500 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
import { CellAlign, CellSize } from "./cell.shared";
export interface CellProps extends ViewProps {
size?: CellSize;
align?: CellAlign;
title?: ReactNode;
brief?: ReactNode;
icon?: ReactNode;
rightIcon?: ReactNode;
bordered?: boolean;
clickable?: boolean;
children?: ReactNode;
}
declare function Cell(props: CellProps): JSX.Element;
export default Cell;