Home > widget-integration > PaginationButtonStyleSettings

PaginationButtonStyleSettings type

Signature:

export type PaginationButtonStyleSettings = {
	shape?: "rectangle" | "rounded-rectangle" | "square" | "circle";
	buttonType?: "text-only" | "text-with-icon" | "icon-only";
	color?: string;
	colorOnHover?: string;
	backgroundColor?: string;
	backgroundColorOnHover?: string;
	borderColor?: string;
	fontSize?: string | number;
	fontSizeScale?: number;
	fontStyle?: string;
	fontWeight?: string | number;
	fontFamily?: string;
	textTransform?: "none" | "capitalize" | "uppercase" | "lowercase";
};