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';