CIA Compliance Manager API Documentation - v1.1.6
    Preparing search index...

    Interface Tab

    Individual tab configuration

    Represents a single tab in a tab list with its associated content and metadata.

    interface Tab {
        badge?: string | number;
        content: ReactNode;
        disabled?: boolean;
        icon?: ReactNode;
        id: string;
        label: string;
        testId?: string;
    }
    Index

    Properties

    badge?: string | number

    Optional badge/count to display (e.g., "3" or "New")

    content: ReactNode

    Content to display when tab is active

    disabled?: boolean

    Optional disabled state

    icon?: ReactNode

    Optional icon element to display alongside the label

    id: string

    Unique identifier for the tab

    label: string

    Display label for the tab

    testId?: string

    Optional test ID for testing purposes