mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import type { CSSProperties, HTMLAttributes, PropsWithChildren } from 'react';
|
|
|
|
export type TableCellProps = {
|
|
align?: 'left' | 'right' | 'center';
|
|
ellipsis?: boolean;
|
|
proportion?: number;
|
|
active?: boolean;
|
|
style?: CSSProperties;
|
|
} & PropsWithChildren &
|
|
HTMLAttributes<HTMLTableCellElement>;
|