es-grid-template
Version:
es-grid-template
23 lines (22 loc) • 780 B
TypeScript
/// <reference types="react" />
type GridProps = {
$theme: {
theme?: 'light' | 'dark';
backgroundColor?: string;
color?: string;
};
$prefix: string;
$borderColor?: string;
$cellFontSize?: number;
$cellPaddingInline?: number;
$cellPaddingBlock?: number;
$headerBg?: string;
$headerColor?: string;
$footerBg?: string;
$footerColor?: string;
$rowHoverBg?: string;
$rowSelectedBg?: string;
$rowSelectedHoverBg?: string;
};
export declare const GridStyle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, GridProps>> & string;
export {};