@hhgtech/hhg-components
Version:
Hello Health Group common components
17 lines (16 loc) • 570 B
TypeScript
import React from 'react';
import { LOCALE } from "../../../interfaces/types";
export type Props = {
className?: string;
isMobile?: boolean;
divId?: string;
adUnitPath: string;
contentId?: string;
customTargetings?: {
[key: string]: (string | number) | (string | number)[];
};
locale?: LOCALE;
isMarryBaby?: boolean;
};
declare const FixedBottomAdBlock: ({ className, adUnitPath, divId, isMobile, contentId, customTargetings, locale, isMarryBaby, }: Props) => React.JSX.Element;
export { FixedBottomAdBlock };