@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 462 B
TypeScript
import React, { HTMLAttributes } from 'react';
import { Gender, SiteType } from "../../../interfaces/types";
export type TimelineBannerProps = {
content: string;
url?: string;
icon: string;
gender: Gender;
siteType?: SiteType;
name?: string;
} & HTMLAttributes<HTMLDivElement>;
declare const TimelineBanner: ({ content, url, icon, gender, name, ...rest }: TimelineBannerProps) => React.JSX.Element;
export { TimelineBanner };