@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 404 B
TypeScript
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 };