From 60da7e927727345ba52dfdd3abe05a4e1632c6c2 Mon Sep 17 00:00:00 2001 From: samuelea Date: Fri, 18 Oct 2024 14:53:24 -0400 Subject: [PATCH] added lock icon --- public/static/icons/LockIcon.svg | 8 +++++++ src/icons/LockIcon.tsx | 36 ++++++++++++++++++++++++++++++++ src/icons/index.ts | 1 + 3 files changed, 45 insertions(+) create mode 100644 public/static/icons/LockIcon.svg create mode 100644 src/icons/LockIcon.tsx diff --git a/public/static/icons/LockIcon.svg b/public/static/icons/LockIcon.svg new file mode 100644 index 000000000..79ce07dc3 --- /dev/null +++ b/public/static/icons/LockIcon.svg @@ -0,0 +1,8 @@ + + + \ No newline at end of file diff --git a/src/icons/LockIcon.tsx b/src/icons/LockIcon.tsx new file mode 100644 index 000000000..391c664be --- /dev/null +++ b/src/icons/LockIcon.tsx @@ -0,0 +1,36 @@ +// Auto-generated file created by svgr-cli source /src/icons/template.js +// Run pnpm build:icons to update +import { SVGProps } from 'react' + +import { Box } from '~/components/Box' + +import { iconVariants } from './styles.css' +import { IconProps } from './types' + +const Svg = (props: SVGProps) => ( + + + +) + +const SvgLockIcon = ({ size = 'sm', ...props }: IconProps) => ( + +) + +export default SvgLockIcon diff --git a/src/icons/index.ts b/src/icons/index.ts index 1a4e8e502..017cf4578 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -38,6 +38,7 @@ export { default as IndexerIcon } from './IndexerIcon' export { default as KeyIcon } from './KeyIcon' export { default as LinkIcon } from './LinkIcon' export { default as ListIcon } from './ListIcon' +export { default as LockIcon } from './LockIcon' export { default as MarketplacesIcon } from './MarketplacesIcon' export { default as MenuIcon } from './MenuIcon' export { default as MinterIcon } from './MinterIcon'