@hhgtech/hhg-components
Version:
Hello Health Group common components
17 lines (16 loc) • 527 B
TypeScript
import React, { AnchorHTMLAttributes } from 'react';
import { BoxProps } from '@mantine/core';
import { DataTrackingTypeHTMLElement } from "../../../types";
export type Props = {
count?: number;
href: string;
classes?: {
box?: string;
count?: string;
};
tracking?: DataTrackingTypeHTMLElement;
boxProps?: BoxProps;
anchorProps?: AnchorHTMLAttributes<HTMLAnchorElement>;
};
declare const CartCareButton: (props: Props) => React.JSX.Element;
export { CartCareButton };