aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/public/lists/PublicListHeader.tsx
blob: 1f016351f047297238e9e3df88cca5672b1500c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
  );
}