diff --git a/src/components/posts/view-post/helpers.module.sass b/src/components/posts/view-post/helpers.module.sass
index 343f1769a..dd95f8337 100644
--- a/src/components/posts/view-post/helpers.module.sass
+++ b/src/components/posts/view-post/helpers.module.sass
@@ -11,10 +11,3 @@
@media screen and ( max-width: 768px)
gap: $space_tiny
-
-.PinnedPostIcon
- position: absolute
- top: -4px
- right: -4px
- color: $color_muted
- font-size: $font_big
diff --git a/src/components/posts/view-post/helpers.tsx b/src/components/posts/view-post/helpers.tsx
index bc6b724f3..4d9a4a49b 100644
--- a/src/components/posts/view-post/helpers.tsx
+++ b/src/components/posts/view-post/helpers.tsx
@@ -6,7 +6,7 @@ import clsx from 'clsx'
import isEmpty from 'lodash.isempty'
import Error from 'next/error'
import React, { FC, useState } from 'react'
-import { RiPushpinLine } from 'react-icons/ri'
+import { RiPushpin2Fill } from 'react-icons/ri'
import { TbMessageCircle2 } from 'react-icons/tb'
import { useIsMobileWidthOrDevice } from 'src/components/responsive'
import { useIsMySpace } from 'src/components/spaces/helpers'
@@ -505,5 +505,13 @@ export function PinnedPostIcon({ postId }: { postId: string }) {
const isPinned = isPinnedPost(postId)
if (!isPinned) return null
- return