Skip to content

Commit

Permalink
added lock icon
Browse files Browse the repository at this point in the history
  • Loading branch information
SamueleA committed Oct 18, 2024
1 parent 37789c5 commit 60da7e9
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
8 changes: 8 additions & 0 deletions public/static/icons/LockIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions src/icons/LockIcon.tsx
Original file line number Diff line number Diff line change
@@ -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<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 13 12"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M8.828 5.245V3.529a2.329 2.329 0 1 0-4.657 0v1.716h-.188a1.2 1.2 0 0 0-1.2 1.2v3.05a1.2 1.2 0 0 0 1.2 1.2h5.032a1.2 1.2 0 0 0 1.2-1.2v-3.05a1.2 1.2 0 0 0-1.2-1.2h-.187ZM6.5 2.067c-.807 0-1.461.654-1.461 1.462v1.716H7.96V3.529c0-.808-.654-1.462-1.462-1.462Z"
clipRule="evenodd"
/>
</svg>
)

const SvgLockIcon = ({ size = 'sm', ...props }: IconProps) => (
<Box
as={Svg}
className={iconVariants({
size,
})}
{...props}
/>
)

export default SvgLockIcon
1 change: 1 addition & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 60da7e9

Please sign in to comment.