UNPKG

@hhgtech/hhg-components

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