···1import { MentionTiny } from "components/Icons/MentionTiny";
2import { ContentLayout, Notification } from "./Notification";
34-export const DummyPostMentionNotification = () => {
005 return (
6 <Notification
7 icon={<MentionTiny />}
08 actionText={<>celine mentioned your post</>}
9 content={
10 <ContentLayout
11 postTitle={"Post Title Here"}
012 publication={{ name: "My Publication" } as any}
13 >
14 I'm just gonna put the description here. The surrounding context is
···25 );
26};
2728-export const DummyUserMentionNotification = () => {
0029 return (
30 <Notification
31 icon={<MentionTiny />}
···34 <ContentLayout
35 postTitle={"Post Title Here"}
36 publication={{ name: "My Publication" } as any}
037 >
38 <div>
39 ...llo this is the content of a post or whatever here it comes{" "}
···1import { MentionTiny } from "components/Icons/MentionTiny";
2import { ContentLayout, Notification } from "./Notification";
34+export const DummyPostMentionNotification = (props: {
5+ cardBorderHidden: boolean;
6+}) => {
7 return (
8 <Notification
9 icon={<MentionTiny />}
10+ cardBorderHidden={props.cardBorderHidden}
11 actionText={<>celine mentioned your post</>}
12 content={
13 <ContentLayout
14 postTitle={"Post Title Here"}
15+ cardBorderHidden={props.cardBorderHidden}
16 publication={{ name: "My Publication" } as any}
17 >
18 I'm just gonna put the description here. The surrounding context is
···29 );
30};
3132+export const DummyUserMentionNotification = (props: {
33+ cardBorderHidden: boolean;
34+}) => {
35 return (
36 <Notification
37 icon={<MentionTiny />}
···40 <ContentLayout
41 postTitle={"Post Title Here"}
42 publication={{ name: "My Publication" } as any}
43+ cardBorderHidden={props.cardBorderHidden}
44 >
45 <div>
46 ...llo this is the content of a post or whatever here it comes{" "}