@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 609 B
TypeScript
import React, { ReactNode } from 'react';
import { ButtonProps } from "../../mantine";
export declare const Close: ({ children, ...rest }: {
children: ReactNode;
} & {
variant?: "white" | "primary" | "secondary" | "tertiary" | "error" | "success" | "light" | "ghost";
skipHover?: boolean;
withColorHover?: boolean;
theme?: "marryBaby" | "helloSites";
component?: any;
gradient?: string;
} & Omit<import("@mantine/core").ButtonProps, "variant" | "gradient"> & React.ButtonHTMLAttributes<HTMLButtonElement> & import("../../types").DataTrackingType) => React.JSX.Element;