diff --git a/packages/ui/src/Atoms/Frameworks/CCPA.tsx b/packages/ui/src/Atoms/Frameworks/CCPA.tsx
index 327c45261..ea20c7557 100644
--- a/packages/ui/src/Atoms/Frameworks/CCPA.tsx
+++ b/packages/ui/src/Atoms/Frameworks/CCPA.tsx
@@ -1,6 +1,9 @@
-export function CCPA() {
+export function CCPA(props: { className?: string }) {
+ const { className } = props;
+
return (
,
description: "Health Insurance Portability and Accountability Act",
},
+ {
+ id: "CCPA",
+ name: "CCPA",
+ logo: ,
+ description: "California Consumer Privacy Act",
+ },
+ {
+ id: "NIS2",
+ name: "NIS 2",
+ logo: ,
+ description: "Network and Information Systems Directive 2",
+ },
+ {
+ id: "GDPR",
+ name: "GDPR",
+ logo: ,
+ description: "General Data Protection Regulation",
+ },
+ {
+ id: "DORA",
+ name: "DORA",
+ logo: ,
+ description: "Digital Operational Readiness Assessment",
+ },
];
type Framework = (typeof availableFrameworks)[number];