From a3f4eb6d5ac4b3abcaf7a1dd87e6779ffd92416a Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Mon, 11 Nov 2024 12:13:58 +0100 Subject: [PATCH] Add new globe-with-lock icon --- images/icons/globe-alt-lock.svg | 4 ++++ src/components/icons/GlobeAltLock.tsx | 34 +++++++++++++++++++++++++++ src/components/icons/index.ts | 1 + 3 files changed, 39 insertions(+) create mode 100644 images/icons/globe-alt-lock.svg create mode 100644 src/components/icons/GlobeAltLock.tsx diff --git a/images/icons/globe-alt-lock.svg b/images/icons/globe-alt-lock.svg new file mode 100644 index 00000000..7b9231ef --- /dev/null +++ b/images/icons/globe-alt-lock.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/icons/GlobeAltLock.tsx b/src/components/icons/GlobeAltLock.tsx new file mode 100644 index 00000000..6415a535 --- /dev/null +++ b/src/components/icons/GlobeAltLock.tsx @@ -0,0 +1,34 @@ +// This file was auto-generated using scripts/generate-icons.js +import type { JSX } from 'preact'; + +export type GlobeAltLockIconProps = JSX.SVGAttributes; + +/** + * Icon generated from globe-alt-lock.svg + */ +export default function GlobeAltLockIcon(props: GlobeAltLockIconProps) { + return ( + + + + + ); +} diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts index dcad838b..77e42787 100644 --- a/src/components/icons/index.ts +++ b/src/components/icons/index.ts @@ -57,6 +57,7 @@ export { default as FolderOpenIcon } from './FolderOpen'; export { default as FolderOpenFilledIcon } from './FolderOpenFilled'; export { default as GlobeIcon } from './Globe'; export { default as GlobeAltIcon } from './GlobeAlt'; +export { default as GlobeAltLockIcon } from './GlobeAltLock'; export { default as GoogleDriveIcon } from './GoogleDrive'; export { default as GroupsIcon } from './Groups'; export { default as GroupsFilledIcon } from './GroupsFilled';