@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 370 B
TypeScript
import React from 'react';
import { SiteWideBannerType } from "./types";
export type Props = {
site: string;
currentUrl: string;
banner: SiteWideBannerType;
isMobile?: boolean;
onClose?: () => void;
};
declare const SiteWideBanner: ({ site, banner, isMobile, onClose, currentUrl, }: Props) => React.JSX.Element;
export { SiteWideBanner };