From 52740930f1453ed5cd2bb8a2799d3d29e11600e4 Mon Sep 17 00:00:00 2001 From: ManayAstria <157117218+ManayAstria@users.noreply.github.com> Date: Tue, 28 May 2024 18:05:32 +0530 Subject: [PATCH] Create followup.tsx --- .../common/Icon/library/followup.tsx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/components/common/Icon/library/followup.tsx diff --git a/src/components/common/Icon/library/followup.tsx b/src/components/common/Icon/library/followup.tsx new file mode 100644 index 0000000..1e8dbdf --- /dev/null +++ b/src/components/common/Icon/library/followup.tsx @@ -0,0 +1,28 @@ +/* istanbul ignore file */ +import * as React from 'react'; + +function FollowUp(props: React.SVGProps) { + return ( + + + + + ); +} + +const MemoFollowUp = React.memo(FollowUp); +export default MemoFollowUp;