From ede597d02d37dd989fa99eca7fe2e7b8a54e05a0 Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Thu, 26 Sep 2024 16:03:13 +0200 Subject: [PATCH] chore: add new icons --- components/icons/Icons.tsx | 53 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/components/icons/Icons.tsx b/components/icons/Icons.tsx index c6383a2af2..b590eb4661 100644 --- a/components/icons/Icons.tsx +++ b/components/icons/Icons.tsx @@ -678,3 +678,56 @@ export const ChevronsLeftRightIcon: React.FC = ({ ); }; + +export const PlusCircleIcon: React.FC = ({ + size, + height, + width, + ...props +}) => { + return ( + + + + ); +}; + +export const CustomFilterIcon: React.FC = ({ + size, + height, + width, + ...props +}) => { + return ( + + ); +};