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

    Variable CIA_COMPONENT_ICONSConst

    CIA_COMPONENT_ICONS: {
        AVAILABILITY: string;
        CONFIDENTIALITY: string;
        INTEGRITY: string;
    } = ...

    CIA component icon constants.

    Icons representing the three pillars of the CIA triad: Confidentiality, Integrity, and Availability. Used in component-specific widgets and visualizations to provide visual consistency.

    Type Declaration

    • AVAILABILITY: string
    • CONFIDENTIALITY: string
    • INTEGRITY: string
    // Display CIA component with its icon
    const component = 'availability';
    const icon = CIA_COMPONENT_ICONS.AVAILABILITY; // "⏱️"

    return <div>{icon} {CIA_LABELS.AVAILABILITY}</div>;
    // Renders: "⏱️ Availability"