Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 7x 16x | import React from "react";
import type { IntegrityImpactWidgetProps } from "../../../types/widget-props";
import { INTEGRITY_IMPACT_TEST_IDS } from "../../../constants/testIds";
import ImpactWidget from "./ImpactWidget";
/**
* Widget that displays the impact of selected integrity level
*
* ## Business Perspective
*
* This widget helps stakeholders understand the business impact of
* integrity controls, including how data accuracy and validation
* mechanisms protect business operations and decision-making. 📊
*/
const IntegrityImpactWidget: React.FC<IntegrityImpactWidgetProps> = ({
availabilityLevel: _availabilityLevel,
integrityLevel,
confidentialityLevel: _confidentialityLevel,
className = "",
testId = `widget-${INTEGRITY_IMPACT_TEST_IDS.INTEGRITY_IMPACT_PREFIX}`,
showExtendedDetails = false,
onError,
}) => {
return (
<ImpactWidget
component="integrity"
level={integrityLevel}
className={className}
testId={testId}
showExtendedDetails={showExtendedDetails}
onError={onError}
/>
);
};
export default IntegrityImpactWidget;
|