UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 411 B
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 };