aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/public/lists/PublicListHeader.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/public/lists/PublicListHeader.tsx')
-rw-r--r--apps/web/components/public/lists/PublicListHeader.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/web/components/public/lists/PublicListHeader.tsx b/apps/web/components/public/lists/PublicListHeader.tsx
new file mode 100644
index 00000000..1f016351
--- /dev/null
+++ b/apps/web/components/public/lists/PublicListHeader.tsx
@@ -0,0 +1,17 @@
+export default function PublicListHeader({
+ list,
+}: {
+ list: {
+ id: string;
+ numItems: number;
+ };
+}) {
+ return (
+ <div className="flex w-full justify-between">
+ <span />
+ <p className="text-xs font-light uppercase text-gray-500">
+ {list.numItems} bookmarks
+ </p>
+ </div>
+ );
+}