UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 404 B
import React, { ReactNode } from 'react'; import { ThumbnailType } from "./types"; export type Props = { children: ReactNode; heading?: string; description?: string; thumbnail?: ThumbnailType; hideDescOnMobile?: boolean; }; declare const BannerLayout: ({ heading, description, thumbnail, hideDescOnMobile, children, }: Props) => React.JSX.Element; export { BannerLayout };