UNPKG

@oceanbase/ui

Version:

The UI library based on OceanBase Design

19 lines (18 loc) 611 B
import * as React from 'react'; export interface HighlightCellProps { prefixCls: string; theme: string; data: { index: number; value: string; }; emptyText?: string; width: string; /** User can not selection code when lock is enabled */ lock?: boolean; rowOffset?: number; onMouseDown?: React.MouseEventHandler; lineNumber?: boolean; hashId?: string; } export default function HighlightCell({ prefixCls, theme, data, emptyText, width, lock, lineNumber, onMouseDown, hashId, }: HighlightCellProps): import("@emotion/react/jsx-runtime").JSX.Element;