@suprsend/react
Version:
The react library for using SuprSend features like inbox, preferences etc
24 lines (23 loc) • 815 B
TypeScript
import { Dispatch, SetStateAction } from 'react';
import { TabsThemeProps } from '../interface';
interface IHeaderProps {
style?: {
header?: {
container?: React.CSSProperties;
headerText?: React.CSSProperties;
markAllReadText?: React.CSSProperties;
};
tabs?: TabsThemeProps;
};
tabBadgeComponent?: React.FC<{
count: number;
}>;
showUnreadCountOnTabs?: boolean;
headerRightComponent?: React.FC<{
markAllRead: () => void;
closeInboxPopover: () => void;
}>;
setPopoverOpen?: Dispatch<SetStateAction<boolean>>;
}
export default function Header({ style, tabBadgeComponent, headerRightComponent, showUnreadCountOnTabs, setPopoverOpen, }: IHeaderProps): import("react/jsx-runtime").JSX.Element;
export {};