@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 411 B
TypeScript
import React from 'react';
import { ButtonProps } from "../../mantine/button";
import { LocaleType } from "../../../interfaces/types";
export type Props = {
bookingId?: string;
bookingType?: string;
label?: string;
locale?: LocaleType;
} & ButtonProps;
declare const BookingBtn: ({ label, bookingId, bookingType, locale, ...rest }: Props) => React.JSX.Element;
export { BookingBtn };