quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
12 lines (11 loc) • 662 B
TypeScript
/// <reference types="react" />
import { HeightType, MarginType, WidthType } from '../../../../types/styleType';
interface TableDataContainerProps extends WidthType, MarginType, HeightType {
selected?: boolean;
}
export declare const formatSize: (size: string | number | undefined, exceptionValue?: string) => string;
export declare const TableDataContainer: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any> | undefined;
} & TableDataContainerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export {};