Extract only the CIA level props from AllCIAComponentsProps
Useful when you need just the security levels without other widget props.
const levels: CIALevelsOnly = { availabilityLevel: 'High', integrityLevel: 'Very High', confidentialityLevel: 'Moderate'}; Copy
const levels: CIALevelsOnly = { availabilityLevel: 'High', integrityLevel: 'Very High', confidentialityLevel: 'Moderate'};
Extract only the CIA level props from AllCIAComponentsProps
Useful when you need just the security levels without other widget props.