Skip to content

Commit

Permalink
fix: add IconQFNotEligible24
Browse files Browse the repository at this point in the history
  • Loading branch information
RamRamez committed Sep 19, 2024
1 parent 72abbb3 commit 79a4f04
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giveth/ui-design-system",
"version": "1.11.34",
"version": "1.11.36",
"files": [
"/lib"
],
Expand Down
46 changes: 46 additions & 0 deletions src/components/icons/QFNotEligible/QFNotEligible24.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React, { FC } from 'react';
import { IIconProps } from '../type';

export const IconQFNotEligible24: FC<IIconProps> = ({
color = 'currentColor',
}) => (
<svg
width='26'
height='24'
viewBox='0 0 26 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
>
<path
d='M9 5C9 4.46957 9.21071 3.96086 9.58579 3.58579C9.96086 3.21071 10.4696 3 11 3H21C21.5304 3 22.0391 3.21071 22.4142 3.58579C22.7893 3.96086 23 4.46957 23 5V15C23 15.5304 22.7893 16.0391 22.4142 16.4142C22.0391 16.7893 21.5304 17 21 17H11C10.4696 17 9.96086 16.7893 9.58579 16.4142C9.21071 16.0391 9 15.5304 9 15V5Z'
stroke={color}
strokeWidth='2'
strokeLinecap='round'
strokeLinejoin='round'
/>
<path
d='M16.2227 7.14125L15.9996 7.36046L15.7765 7.14125C15.5723 6.93814 15.3291 6.77687 15.061 6.66681C14.793 6.55674 14.5053 6.50007 14.2147 6.50007C13.9242 6.50007 13.6365 6.55674 13.3684 6.66681C13.1003 6.77687 12.8572 6.93814 12.653 7.14125C12.4461 7.34187 12.2819 7.58086 12.1698 7.84434C12.0577 8.10783 12 8.39056 12 8.67613C12 8.96171 12.0577 9.24444 12.1698 9.50792C12.2819 9.77141 12.4461 10.0104 12.653 10.211L15.2987 12.8112C15.6878 13.1936 16.3115 13.1936 16.7005 12.8113L19.347 10.211C19.5539 10.0104 19.7181 9.77141 19.8302 9.50792C19.9423 9.24444 20 8.96171 20 8.67613C20 8.39056 19.9423 8.10783 19.8302 7.84434C19.7181 7.58086 19.5539 7.34187 19.347 7.14125C19.1428 6.93811 18.8995 6.77683 18.6314 6.66676C18.3632 6.55668 18.0755 6.5 17.7849 6.5C17.4942 6.5 17.2065 6.55668 16.9384 6.66676C16.6702 6.77683 16.427 6.93811 16.2227 7.14125Z'
fill={color}
/>
<path
d='M19 17V19C19 19.5304 18.7893 20.0391 18.4142 20.4142C18.0391 20.7893 17.5304 21 17 21H7C6.46957 21 5.96086 20.7893 5.58579 20.4142C5.21071 20.0391 5 19.5304 5 19V9C5 8.46957 5.21071 7.96086 5.58579 7.58579C5.96086 7.21071 6.46957 7 7 7H9'
stroke={color}
strokeWidth='2'
strokeLinecap='round'
strokeLinejoin='round'
/>
<circle
cx='7.75'
cy='16.25'
r='6.25'
fill={color}
stroke='white'
strokeWidth='2'
/>
<path
d='M10 14L5.5 18.5M5.5 14L10 18.5'
stroke='white'
strokeLinecap='round'
/>
</svg>
);
1 change: 1 addition & 0 deletions src/components/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -507,3 +507,4 @@ export * from './Warning/Warning24';
export * from './Warning/Warning32';
export * from './Warning/Warning64';
export * from './QFNew/QFNew';
export * from './QFNotEligible/QFNotEligible24';

0 comments on commit 79a4f04

Please sign in to comment.