- toggleLikeComment(data)}>
-
-
- {prettyNum(data.likesCount)}
-
-)
-
-export default React.memo(UpInfo)
diff --git a/src/containers/unit/Comments/Comment/Upvote.tsx b/src/containers/unit/Comments/Comment/Upvote.tsx
new file mode 100755
index 000000000..33cc01e77
--- /dev/null
+++ b/src/containers/unit/Comments/Comment/Upvote.tsx
@@ -0,0 +1,29 @@
+import React from 'react'
+
+import type { TComment } from '@/spec'
+import { ICON } from '@/config'
+import { prettyNum } from '@/utils'
+
+import { Wrapper, InnerWrapper, Icon } from '../styles/comment/upvote'
+
+import { toggleLikeComment } from '../logic'
+
+type TProps = {
+ data: TComment
+}
+
+const Upvote: React.FC