File tree Expand file tree Collapse file tree
apps/web/core/components/issues/issue-detail/issue-activity/activity/actions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { FC } from "react" ;
22import { observer } from "mobx-react" ;
3- import { MessageSquare } from "lucide-react" ;
3+ import { AlignLeft } from "lucide-react" ;
44// hooks
55import { useIssueDetail } from "@/hooks/store/use-issue-detail" ;
66// components
@@ -20,7 +20,7 @@ export const IssueDescriptionActivity: FC<TIssueDescriptionActivity> = observer(
2020 if ( ! activity ) return < > </ > ;
2121 return (
2222 < IssueActivityBlockComponent
23- icon = { < MessageSquare size = { 14 } className = "text-custom-text-200" aria-hidden = "true" /> }
23+ icon = { < AlignLeft size = { 14 } className = "text-custom-text-200" aria-hidden = "true" /> }
2424 activityId = { activityId }
2525 ends = { ends }
2626 >
Original file line number Diff line number Diff line change 11import { FC } from "react" ;
22import { observer } from "mobx-react" ;
3- import { MessageSquare } from "lucide-react" ;
3+ import { Type } from "lucide-react" ;
44// hooks
55import { useIssueDetail } from "@/hooks/store/use-issue-detail" ;
66// components
@@ -20,7 +20,7 @@ export const IssueNameActivity: FC<TIssueNameActivity> = observer((props) => {
2020 if ( ! activity ) return < > </ > ;
2121 return (
2222 < IssueActivityBlockComponent
23- icon = { < MessageSquare size = { 14 } className = "text-custom-text-200" aria-hidden = "true" /> }
23+ icon = { < Type size = { 14 } className = "text-custom-text-200" aria-hidden = "true" /> }
2424 activityId = { activityId }
2525 ends = { ends }
2626 >
You can’t perform that action at this time.
0 commit comments