From 79a4f04529fa9cbcbd6a7535c2c97fe476c93e85 Mon Sep 17 00:00:00 2001 From: Ramin Date: Thu, 19 Sep 2024 14:29:05 +0330 Subject: [PATCH] fix: add IconQFNotEligible24 --- package.json | 2 +- .../icons/QFNotEligible/QFNotEligible24.tsx | 46 +++++++++++++++++++ src/components/icons/index.tsx | 1 + 3 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 src/components/icons/QFNotEligible/QFNotEligible24.tsx diff --git a/package.json b/package.json index 547156c..ac58dee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@giveth/ui-design-system", - "version": "1.11.34", + "version": "1.11.36", "files": [ "/lib" ], diff --git a/src/components/icons/QFNotEligible/QFNotEligible24.tsx b/src/components/icons/QFNotEligible/QFNotEligible24.tsx new file mode 100644 index 0000000..d349b08 --- /dev/null +++ b/src/components/icons/QFNotEligible/QFNotEligible24.tsx @@ -0,0 +1,46 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconQFNotEligible24: FC = ({ + color = 'currentColor', +}) => ( + + + + + + + +); diff --git a/src/components/icons/index.tsx b/src/components/icons/index.tsx index 348d89d..1087ac5 100644 --- a/src/components/icons/index.tsx +++ b/src/components/icons/index.tsx @@ -507,3 +507,4 @@ export * from './Warning/Warning24'; export * from './Warning/Warning32'; export * from './Warning/Warning64'; export * from './QFNew/QFNew'; +export * from './QFNotEligible/QFNotEligible24';