Skip to content

Commit

Permalink
Add missing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
yigiterdev committed Dec 18, 2023
1 parent ddf9c27 commit f75809c
Show file tree
Hide file tree
Showing 31 changed files with 626 additions and 0 deletions.
3 changes: 3 additions & 0 deletions public/static/icons/ArrowDownIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/static/icons/CollaboratorsIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/static/icons/DeployIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/icons/DotIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/icons/DownloadIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/static/icons/DragIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/icons/EllipsisIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/static/icons/GridIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/static/icons/ListIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/icons/MarketplaceIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/static/icons/PinIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/icons/TransactionsIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/static/icons/TrashIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/icons/UploadIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/static/icons/WalletconnectIcon.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/ArrowDownIcon.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 20 20"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M5.479 9.94 4.419 11l5.53 5.53 5.53-5.53-1.06-1.06-3.72 3.72V3.47h-1.5v10.19l-3.72-3.72Z"
clipRule="evenodd"
/>
</svg>
)

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

export default SvgArrowDownIcon
34 changes: 34 additions & 0 deletions src/icons/CollaboratorsIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// 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 20 20"
{...props}
>
<path
fill="currentColor"
d="M6.648 10.767a2.883 2.883 0 1 0 0-5.767 2.883 2.883 0 0 0 0 5.767ZM16.241 7.884a2.883 2.883 0 1 1-5.766 0 2.883 2.883 0 0 1 5.766 0ZM13.358 11.748c2.828 0 5.123 1.875 5.148 4.196H8.21c.025-2.321 2.32-4.196 5.148-4.196ZM9.055 12.238a6.028 6.028 0 0 0-2.407-.49c-2.828 0-5.123 1.874-5.148 4.195h5.71v-.01c.016-1.5.737-2.781 1.845-3.695Z"
/>
</svg>
)

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

export default SvgCollaboratorsIcon
40 changes: 40 additions & 0 deletions src/icons/DeployIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// 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 20 20"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M10.105 13.232a.996.996 0 0 1-1.348-.057l-1.932-1.932a.997.997 0 0 1-.057-1.349l.03-.034c.34-.403.794-.937 1.285-1.51l.303-.353.37-.43c.969-1.121 1.958-2.244 2.466-2.751 1.816-1.816 3.689-3.04 6.132-3.01a.849.849 0 0 1 .84.84c.03 2.443-1.194 4.316-3.01 6.132-.507.507-1.63 1.497-2.752 2.466a273.04 273.04 0 0 1-2.327 1.988Zm5.076-6.501a1.352 1.352 0 1 1-1.912-1.912 1.352 1.352 0 0 1 1.912 1.912Z"
clipRule="evenodd"
/>
<path
fill="currentColor"
d="M2.785 13.821a.4.4 0 1 0 .566.566l2.152-2.152a.4.4 0 0 0-.566-.566l-2.152 2.152ZM2.207 17.227a.4.4 0 0 0 .566.566l4.144-4.144a.4.4 0 1 0-.566-.566l-4.144 4.144ZM5.613 17.215a.4.4 0 0 1 0-.566l2.152-2.152a.4.4 0 0 1 .566.566l-2.152 2.152a.4.4 0 0 1-.566 0ZM2.005 9.902c1.6-1.6 3.611-2.442 5.46-2.462.032 0 .05.037.029.061a336.915 336.915 0 0 0-1.914 2.25l-.169.2a5.92 5.92 0 0 0-3.335.061c-.067.023-.12-.06-.07-.11ZM10.047 14.593v-.002l.001-.002.001-.001.2-.168a309.141 309.141 0 0 0 2.25-1.914.037.037 0 0 1 .06.029c-.019 1.849-.862 3.86-2.46 5.46-.05.05-.134-.005-.112-.071a5.92 5.92 0 0 0 .06-3.331Z"
/>
</svg>
)

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

export default SvgDeployIcon
31 changes: 31 additions & 0 deletions src/icons/DotIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// 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 20 20"
{...props}
>
<circle cx={10.418} cy={10} r={4} fill="currentColor" />
</svg>
)

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

export default SvgDotIcon
36 changes: 36 additions & 0 deletions src/icons/DownloadIcon.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 20 20"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M3 12.25V18h13.5v-5.75H15v4.25H4.5v-4.25H3Zm11.28-2.47-1.06-1.06-2.72 2.72V3.25H9v8.19L6.28 8.72 5.22 9.78l4.53 4.53 4.53-4.53Z"
clipRule="evenodd"
/>
</svg>
)

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

export default SvgDownloadIcon
34 changes: 34 additions & 0 deletions src/icons/DragIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// 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 20 20"
{...props}
>
<path
fill="currentColor"
d="M7.572 7.014a1.438 1.438 0 1 0 0-2.877 1.438 1.438 0 0 0 0 2.877ZM7.572 11.94a1.438 1.438 0 1 0 0-2.877 1.438 1.438 0 0 0 0 2.876ZM7.572 16.864a1.438 1.438 0 1 0 0-2.876 1.438 1.438 0 0 0 0 2.876ZM12.89 7.014a1.438 1.438 0 1 0 0-2.877 1.438 1.438 0 0 0 0 2.877ZM12.89 11.94a1.438 1.438 0 1 0 0-2.877 1.438 1.438 0 0 0 0 2.876ZM12.89 16.864a1.438 1.438 0 1 0 0-2.876 1.438 1.438 0 0 0 0 2.876Z"
/>
</svg>
)

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

export default SvgDragIcon
36 changes: 36 additions & 0 deletions src/icons/EllipsisIcon.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 20 20"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M6.597 10a1.388 1.388 0 1 1-2.776 0 1.388 1.388 0 0 1 2.776 0Zm5.21 0a1.388 1.388 0 1 1-2.776 0 1.388 1.388 0 0 1 2.776 0Zm3.82 1.388a1.388 1.388 0 1 0 0-2.776 1.388 1.388 0 0 0 0 2.776Z"
clipRule="evenodd"
/>
</svg>
)

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

export default SvgEllipsisIcon
Loading

0 comments on commit f75809c

Please sign in to comment.