Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/components/common/Icon/library/followup.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* istanbul ignore file */
import * as React from 'react';

function FollowUp(props: React.SVGProps<SVGSVGElement>) {
return (
<svg
width="33"
height="34"
viewBox="0 0 33 34"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.6321 17.7037C18.4864 17.7037 22.188 18.6273 22.188 20.4816V21.8706H11.0762V20.4816C11.0762 18.6273 14.7778 17.7037 16.6321 17.7037ZM16.6321 16.3147C15.8953 16.3147 15.1887 16.022 14.6678 15.501C14.1468 14.9801 13.8541 14.2735 13.8541 13.5367C13.8541 12.8 14.1468 12.0934 14.6678 11.5724C15.1887 11.0515 15.8953 10.7588 16.6321 10.7588C17.3688 10.7588 18.0754 11.0515 18.5964 11.5724C19.1173 12.0934 19.41 12.8 19.41 13.5367C19.41 14.2735 19.1173 14.9801 18.5964 15.501C18.0754 16.022 17.3688 16.3147 16.6321 16.3147Z"
fill="black"
fill-opacity="0.87"
/>
<path
d="M14.5084 7.06551L14.4685 11.1768L19.7218 5.74558L14.575 0.213327L14.535 4.32464C11.7767 4.29784 9.12019 5.42723 7.14981 7.46433C5.17943 9.50144 4.05662 12.2794 4.02838 15.1871C4.00748 17.3387 4.58605 19.3453 5.58369 21.0408L7.50115 19.0584C6.92719 17.9153 6.6151 16.5828 6.62841 15.2124C6.6496 13.0316 7.49171 10.9481 8.96949 9.42028C10.4473 7.89245 12.4397 7.04541 14.5084 7.06551ZM28.026 12.3498L26.1085 14.3322C26.6694 15.4889 26.9946 16.8078 26.9813 18.1783C26.9601 20.3591 26.118 22.4425 24.6402 23.9704C23.1624 25.4982 21.17 26.3452 19.1013 26.3251L19.1412 22.2138L13.8879 27.645L19.0347 33.1773L19.0747 29.066C21.833 29.0928 24.4895 27.9634 26.4599 25.9263C28.4303 23.8892 29.5531 21.1112 29.5813 18.2035C29.6022 16.052 29.0236 14.0453 28.026 12.3498Z"
fill="black"
fill-opacity="0.87"
/>
</svg>
);
}

const MemoFollowUp = React.memo(FollowUp);
export default MemoFollowUp;