Open sharmillamuthu opened 3 years ago
You can adjust the rendering of the tab using the Layouts onRenderTab callback prop:
onRenderTab?: (
node: TabNode,
renderValues: ITabRenderValues,
) => void;
export interface ITabRenderValues {
leading: React.ReactNode;
content: React.ReactNode;
name: string;
buttons: React.ReactNode[];
}
set the content with a blinking component
Is there a way to enable tab (tab header) blinking dynamically?