@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 588 B
TypeScript
/// <reference types="react" />
import { NotificationType, NotificationSize, NotificationColor } from "./";
type StyledProps = {
notificationType: NotificationType;
notificationSize?: NotificationSize;
notificationColor?: NotificationColor;
hasIcon: boolean;
};
export declare const StyledBadge: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: import("react").ElementType<any>;
} & StyledProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export {};