diff --git a/renderer/components/timelines/status/Actions.tsx b/renderer/components/timelines/status/Actions.tsx
new file mode 100644
index 0000000000..e02f16eace
--- /dev/null
+++ b/renderer/components/timelines/status/Actions.tsx
@@ -0,0 +1,15 @@
+import { FaBookmark, FaEllipsis, FaReply, FaRetweet, FaStar } from 'react-icons/fa6'
+
+type Props = {}
+
+export default function Actions(props: Props) {
+ return (
+
+
+
+
+
+
+
+ )
+}
diff --git a/renderer/components/timelines/status/Status.tsx b/renderer/components/timelines/status/Status.tsx
index 061d0a3154..c5972c2cb8 100644
--- a/renderer/components/timelines/status/Status.tsx
+++ b/renderer/components/timelines/status/Status.tsx
@@ -7,6 +7,7 @@ import emojify from '@/utils/emojify'
import Card from './Card'
import Poll from './Poll'
import { FormattedMessage } from 'react-intl'
+import Actions from './Actions'
type Props = {
status: Entity.Status
@@ -46,6 +47,7 @@ export default function Status(props: Props) {
{status.poll && }
{status.card && }
+