diff --git a/front/src/components/cell-link/CellLink.tsx b/front/src/components/cell-link/CellLink.tsx
new file mode 100644
index 000000000..9073de59b
--- /dev/null
+++ b/front/src/components/cell-link/CellLink.tsx
@@ -0,0 +1,39 @@
+import * as React from 'react';
+import styled from '@emotion/styled';
+import { Link } from 'react-router-dom';
+
+type OwnProps = {
+ name: string;
+ picture?: string;
+ href: string;
+};
+
+const StyledContainer = styled.span`
+ background-color: ${(props) => props.theme.tertiaryBackground};
+ border-radius: 4px;
+ color: ${(props) => props.theme.text80};
+ display: inline-flex;
+ align-items: center;
+ padding: 4px 8px 4px 4px;
+ gap: 4px;
+
+ img {
+ height: 1rem;
+ width: 1rem;
+ border-radius: 0.5rem;
+ object-fit: cover;
+ }
+`;
+
+function CellLink({ name, picture, href }: OwnProps) {
+ return (
+
+
+ {picture &&
}
+ {name}
+
+
+ );
+}
+
+export default CellLink;