Update selector with new frameworks
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
export function CCPA() {
|
export function CCPA(props: { className?: string }) {
|
||||||
|
const { className } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<svg
|
<svg
|
||||||
|
className={className}
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="Layer_1"
|
id="Layer_1"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
export function DORA() {
|
export function DORA(props: { className?: string }) {
|
||||||
|
const { className } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<svg
|
<svg
|
||||||
|
className={className}
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="Layer_1"
|
id="Layer_1"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
export function GDPR() {
|
export function GDPR(props: { className?: string }) {
|
||||||
|
const { className } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<svg
|
<svg
|
||||||
|
className={className}
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="Layer_1"
|
id="Layer_1"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
export function NIS2() {
|
export function NIS2(props: { className?: string }) {
|
||||||
|
const { className } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<svg
|
<svg
|
||||||
|
className={className}
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="Layer_1"
|
id="Layer_1"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
|||||||
@@ -5,6 +5,10 @@ import { useTranslate } from "@probo/i18n";
|
|||||||
import { ISO27001 } from "../../Atoms/Frameworks/ISO27001";
|
import { ISO27001 } from "../../Atoms/Frameworks/ISO27001";
|
||||||
import { SOC2 } from "../../Atoms/Frameworks/SOC2";
|
import { SOC2 } from "../../Atoms/Frameworks/SOC2";
|
||||||
import { HIPAA } from "../../Atoms/Frameworks/HIPAA";
|
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 = [
|
const availableFrameworks = [
|
||||||
{
|
{
|
||||||
@@ -25,6 +29,30 @@ const availableFrameworks = [
|
|||||||
logo: <HIPAA className="size-8" />,
|
logo: <HIPAA className="size-8" />,
|
||||||
description: "Health Insurance Portability and Accountability Act",
|
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];
|
type Framework = (typeof availableFrameworks)[number];
|
||||||
|
|||||||
Reference in New Issue
Block a user