@cfxjs/react-ui
Version:
Modern and minimalist React UI library.
18 lines (17 loc) • 633 B
TypeScript
import { PaginationVariants } from 'components/utils/prop-types';
import { CfxUIThemesPalette } from 'components/styles/themes';
export interface PaginationSize {
font: string;
width: string;
}
declare type PaginationColor = {
color: string;
hoverColor: string;
borderColor: string;
hoverBorderColor: string;
bgColor: string;
hoverBgColor: string;
};
export declare const getSizes: (size?: "mini" | "small" | "medium" | "large" | undefined) => PaginationSize;
export declare const getColors: (palette: CfxUIThemesPalette, variant?: PaginationVariants, active?: boolean) => PaginationColor;
export {};