@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
15 lines (14 loc) • 526 B
TypeScript
/// <reference types="react" />
import { CellProps } from "./cell";
import CellGroup from "./cell-group";
export type { CellAlign, CellSize } from "./cell.shared";
export { default as CellBase } from "./cell-base";
export { default as CellTitle } from "./cell-title";
export { default as CellValue } from "./cell-value";
export type { CellProps } from "./cell";
interface CellInterface {
(props: CellProps): JSX.Element;
Group: typeof CellGroup;
}
declare const Cell: CellInterface;
export default Cell;