From 682c0ec2517a1c01968eed212424410f9d812d60 Mon Sep 17 00:00:00 2001 From: josephalexantony-aot Date: Fri, 27 Sep 2024 03:12:14 -0700 Subject: [PATCH 1/2] FWF-3643:[Feature] - UI refurbish and Import initial changes. --- .../src/components/SvgIcons/index.tsx | 95 +++++++++++ .../src/request/requestService.ts | 25 ++- forms-flow-theme/scss/_card.scss | 10 +- forms-flow-theme/scss/_forms.scss | 6 +- forms-flow-theme/scss/_modal.scss | 79 ++++++--- forms-flow-theme/scss/_table.scss | 32 +++- forms-flow-theme/scss/_theme.scss | 2 +- forms-flow-theme/scss/_variables.scss | 5 + forms-flow-theme/scss/fileUpload.scss | 150 +++++++++++------- 9 files changed, 316 insertions(+), 88 deletions(-) diff --git a/forms-flow-components/src/components/SvgIcons/index.tsx b/forms-flow-components/src/components/SvgIcons/index.tsx index 3a5612bbb..3d80e8311 100644 --- a/forms-flow-components/src/components/SvgIcons/index.tsx +++ b/forms-flow-components/src/components/SvgIcons/index.tsx @@ -240,6 +240,51 @@ export const CloseIcon = ({ ); +export const SuccessIcon = ({ color = baseColor, ...props }) => ( + + + + +); + +export const FailedIcon = ({ color = baseColor, ...props }) => ( + + + + + + + + + + + +); + export const ExportIcon = ({ color = baseColor, ...props }) => ( ( ); +export const IButton = ({ color = grayColor, ...props }) => ( + + + + + + + + + + + +); + +export const DownArrowIcon = ({ color = grayColor, ...props }) => ( + + + +); + export const PencilIcon = ({ color = baseColor, ...props }) => (