Core constants for CIA Compliance Manager
This module provides centralized constants for icons, labels, colors, and titles used throughout the application. These constants ensure consistency across all widgets and components.
import { WIDGET_ICONS, CIA_LABELS, SECURITY_LEVELS } from './constants/coreConstants';// Using widget iconsconst icon = WIDGET_ICONS.COMPLIANCE_STATUS; // "⚖️"// Using CIA component labelsconst label = CIA_LABELS.AVAILABILITY; // "Availability"// Using security levelsconst level = SECURITY_LEVELS.HIGH; // "High" Copy
import { WIDGET_ICONS, CIA_LABELS, SECURITY_LEVELS } from './constants/coreConstants';// Using widget iconsconst icon = WIDGET_ICONS.COMPLIANCE_STATUS; // "⚖️"// Using CIA component labelsconst label = CIA_LABELS.AVAILABILITY; // "Availability"// Using security levelsconst level = SECURITY_LEVELS.HIGH; // "High"
Core constants for CIA Compliance Manager
This module provides centralized constants for icons, labels, colors, and titles used throughout the application. These constants ensure consistency across all widgets and components.
Example