Update selector with new frameworks

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-12-18 10:32:26 +01:00
parent dcac038055
commit 38c0d38f92
5 changed files with 44 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
export function CCPA() {
export function CCPA(props: { className?: string }) {
const { className } = props;
return (
<svg
className={className}
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"

View File

@@ -1,6 +1,9 @@
export function DORA() {
export function DORA(props: { className?: string }) {
const { className } = props;
return (
<svg
className={className}
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"

View File

@@ -1,6 +1,9 @@
export function GDPR() {
export function GDPR(props: { className?: string }) {
const { className } = props;
return (
<svg
className={className}
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"

View File

@@ -1,6 +1,9 @@
export function NIS2() {
export function NIS2(props: { className?: string }) {
const { className } = props;
return (
<svg
className={className}
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"

View File

@@ -5,6 +5,10 @@ import { useTranslate } from "@probo/i18n";
import { ISO27001 } from "../../Atoms/Frameworks/ISO27001";
import { SOC2 } from "../../Atoms/Frameworks/SOC2";
import { HIPAA } from "../../Atoms/Frameworks/HIPAA";
import { CCPA } from "../../Atoms/Frameworks/CCPA";
import { GDPR } from "../../Atoms/Frameworks/GDPR";
import { NIS2 } from "../../Atoms/Frameworks/NIS2";
import { DORA } from "../../Atoms/Frameworks/DORA";
const availableFrameworks = [
{
@@ -25,6 +29,30 @@ const availableFrameworks = [
logo: <HIPAA className="size-8" />,
description: "Health Insurance Portability and Accountability Act",
},
{
id: "CCPA",
name: "CCPA",
logo: <CCPA className="size-8" />,
description: "California Consumer Privacy Act",
},
{
id: "NIS2",
name: "NIS 2",
logo: <NIS2 className="size-8" />,
description: "Network and Information Systems Directive 2",
},
{
id: "GDPR",
name: "GDPR",
logo: <GDPR className="size-8" />,
description: "General Data Protection Regulation",
},
{
id: "DORA",
name: "DORA",
logo: <DORA className="size-8" />,
description: "Digital Operational Readiness Assessment",
},
];
type Framework = (typeof availableFrameworks)[number];