Update selector

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-12-18 11:35:45 +01:00
parent e735f06e82
commit 49bb9b53c3
4 changed files with 26 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,9 @@
export function ISO27701() {
export function ISO27701(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,4 +1,6 @@
export function ISO42001() {
export function ISO42001(props: { className?: string }) {
const { className } = props;
return (
<svg
version="1.1"
@@ -10,6 +12,7 @@ export function ISO42001() {
viewBox="0 0 60 60"
enable-background="new 0 0 60 60"
xmlSpace="preserve"
className={className}
>
<path
className="fill-txt-primary"

View File

@@ -9,6 +9,8 @@ import { CCPA } from "../../Atoms/Frameworks/CCPA";
import { GDPR } from "../../Atoms/Frameworks/GDPR";
import { NIS2 } from "../../Atoms/Frameworks/NIS2";
import { DORA } from "../../Atoms/Frameworks/DORA";
import { ISO27701 } from "../../Atoms/Frameworks/ISO27701";
import { ISO42001 } from "../../Atoms/Frameworks/ISO42001";
const availableFrameworks = [
{
@@ -53,6 +55,20 @@ const availableFrameworks = [
logo: <DORA className="size-8" />,
description: "Digital Operational Readiness Assessment",
},
{
id: "ISO/IEC 27701:2025",
name: "ISO 27701 (2025)",
logo: <ISO27701 className="size-8" />,
description:
"Information security, cybersecurity and privacy protection",
},
{
id: "ISO/IEC 42001:2023",
name: "ISO 42001 (2023)",
logo: <ISO42001 className="size-8" />,
description:
"Information technology, artificial intelligence, management system",
},
];
type Framework = (typeof availableFrameworks)[number];