fix avatar and show more data
All checks were successful
deploy / deploy (push) Successful in 2m13s

This commit is contained in:
Lee
2023-10-19 20:31:05 +01:00
parent a86dbe5045
commit d92e5220fd
7 changed files with 114 additions and 25 deletions

View File

@ -1,11 +1,18 @@
import clsx from "clsx";
type LabelProps = {
title: string;
value: string;
className?: string;
};
export default function Label({ title, value }: LabelProps) {
export default function Label({
title,
value,
className = "bg-neutral-700",
}: LabelProps) {
return (
<div className="flex flex-col justify-center rounded-md bg-neutral-700">
<div className={clsx("flex flex-col justify-center rounded-md", className)}>
<div className="flex items-center gap-2 p-[0.3rem]">
<p>{title}</p>
<div className="h-4 w-[1px] bg-neutral-100"></div>