@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
23 lines • 813 B
TypeScript
import { BoxProps, CompoundStylesApiProps, Factory } from '@mantine/core';
export type TableLastUpdatedStylesNames = 'lastUpdatedRoot' | 'lastUpdatedLabel';
export interface TableLastUpdatedProps extends BoxProps, CompoundStylesApiProps<TableLastUpdatedFactory> {
/**
* Label to contextualize the date
*
* @default "Last update:"
*/
label?: string;
}
export type TableLastUpdatedFactory = Factory<{
props: TableLastUpdatedProps;
ref: HTMLDivElement;
stylesNames: TableLastUpdatedStylesNames;
compound: true;
}>;
export declare const TableLastUpdated: import("@mantine/core").MantineComponent<{
props: TableLastUpdatedProps;
ref: HTMLDivElement;
stylesNames: TableLastUpdatedStylesNames;
compound: true;
}>;
//# sourceMappingURL=TableLastUpdated.d.ts.map