@hhgtech/hhg-components
Version:
Hello Health Group common components
20 lines (19 loc) • 555 B
TypeScript
import { ReactNode } from 'react';
export interface ButtonStyles {
color?: string;
size?: string;
variant?: string;
skipHover?: boolean;
isError?: boolean;
isSuccess?: boolean;
children?: ReactNode;
theme?: 'helloSites' | 'marryBaby';
}
declare const _default: (params: ButtonStyles, options?: import("@mantine/core").UseStylesOptions<string>) => {
classes: {
root: string;
};
cx: (...args: any) => string;
theme: import("@mantine/core").MantineTheme;
};
export default _default;