nes-ui-react
Version:
A design system that paints the web in 8 bits.
10 lines (9 loc) • 461 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface TableProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
centered?: boolean;
bordered?: boolean;
tableStyle?: React.CSSProperties;
}
export declare const Table: ({ id, style, children, tableStyle, bordered, centered, className }: TableProps) => import("react/jsx-runtime").JSX.Element;