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 ( + + ); +};