@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 385 B
TypeScript
import React from 'react';
export type Props = {
className?: string;
headingText: string;
textRight?: string;
iconLeft?: JSX.Element;
onRightClick?: () => void;
onLeftClick?: () => void;
};
declare const MobileTopBar: ({ className, onLeftClick, headingText, onRightClick, iconLeft, textRight, }: Props) => React.JSX.Element;
export { MobileTopBar };