UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 283 B
import React from 'react'; export type Props = { message: string; buttonTxt?: string; imgSrc?: string; onBtnClick?: () => void; }; declare const EmptyMessage: ({ message, buttonTxt, imgSrc, onBtnClick }: Props) => React.JSX.Element; export { EmptyMessage };