UNPKG

@hhgtech/hhg-components

Version:
17 lines (16 loc) 527 B
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 };