UNPKG

@hhgtech/hhg-components

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