UNPKG

@coveord/plasma-mantine

Version:

A Plasma flavoured Mantine theme

20 lines 890 B
import { BoxProps, CompoundStylesApiProps } from '@mantine/core'; import { ForwardedRef } from 'react'; import { CustomComponentThemeExtend } from '../../../../utils'; import { TableLayoutProps } from '../../Table.types'; import { RowLayoutBodyFactory } from './RowLayoutBody'; export type RowLayoutHeaderStyleNames = 'headerRow'; export interface RowLayoutHeaderProps<T> extends BoxProps, TableLayoutProps<T>, CompoundStylesApiProps<RowLayoutBodyFactory> { } export declare const RowLayoutHeader: { <T>(props: RowLayoutHeaderProps<T> & { ref?: ForwardedRef<HTMLTableRowElement>; }): import("react/jsx-runtime").JSX.Element; extend: CustomComponentThemeExtend<{ props: RowLayoutHeaderProps<unknown>; ref: HTMLTableRowElement; stylesNames: RowLayoutHeaderStyleNames; compound: true; }>; }; //# sourceMappingURL=RowLayoutHeader.d.ts.map