Header & HeaderTabs components: make className prop optional

Signed-off-by: Raghunandan <soapraj@gmail.com>
This commit is contained in:
Raghunandan
2022-06-08 17:15:54 +02:00
parent b49cc12d95
commit 05e68b0b3f
2 changed files with 2 additions and 2 deletions
@@ -113,7 +113,7 @@ type Props = {
tooltip?: string;
type?: string;
typeLink?: string;
className: string | '';
className?: string | '';
};
type TypeFragmentProps = {
@@ -67,7 +67,7 @@ type HeaderTabsProps = {
tabs: Tab[];
onChange?: (index: number) => void;
selectedIndex?: number;
className: string | '';
className?: string | '';
};
/**