UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

10 lines (9 loc) 447 B
import type { MRT_Cell } from 'mantine-react-table'; export interface StatusCellProps<T extends Record<string, any> = {}> { readonly cell: MRT_Cell<T>; readonly color: string; readonly displayValue: string; readonly className?: string; } declare function StatusCell<T extends Record<string, any> = {}>({ displayValue, className, }: Readonly<StatusCellProps<T>>): import("react/jsx-runtime").JSX.Element; export default StatusCell;