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;