From fc98ca65d358cce35db9e407d96e860c2b05a177 Mon Sep 17 00:00:00 2001 From: Ramin Date: Tue, 17 Sep 2024 14:33:59 +0330 Subject: [PATCH 1/2] fix: add new QF icon --- src/components/icons/QFNew/QFNew.tsx | 34 ++++++++++++++++++++++++++++ src/components/icons/index.tsx | 1 + 2 files changed, 35 insertions(+) create mode 100644 src/components/icons/QFNew/QFNew.tsx diff --git a/src/components/icons/QFNew/QFNew.tsx b/src/components/icons/QFNew/QFNew.tsx new file mode 100644 index 0000000..b390be9 --- /dev/null +++ b/src/components/icons/QFNew/QFNew.tsx @@ -0,0 +1,34 @@ +import React, { FC } from 'react'; +import { IIconProps } from '../type'; + +export const IconQFNew: FC = ({ + size = 16, + color = 'currentColor', +}) => ( + + + + + +); diff --git a/src/components/icons/index.tsx b/src/components/icons/index.tsx index b212f11..348d89d 100644 --- a/src/components/icons/index.tsx +++ b/src/components/icons/index.tsx @@ -506,3 +506,4 @@ export * from './Warning/Warning16'; export * from './Warning/Warning24'; export * from './Warning/Warning32'; export * from './Warning/Warning64'; +export * from './QFNew/QFNew'; From 5678996dcb19bfbda669554cf3d39ca8031cc458 Mon Sep 17 00:00:00 2001 From: Ramin Date: Tue, 17 Sep 2024 14:35:15 +0330 Subject: [PATCH 2/2] fix: attributes --- src/components/icons/QFNew/QFNew.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/icons/QFNew/QFNew.tsx b/src/components/icons/QFNew/QFNew.tsx index b390be9..57a715a 100644 --- a/src/components/icons/QFNew/QFNew.tsx +++ b/src/components/icons/QFNew/QFNew.tsx @@ -15,9 +15,9 @@ export const IconQFNew: FC = ({ = ({ );