blob: b436ad68142fabbabc49a63827b82996f5ea5b80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
type Props = {
label: string;
};
export default function UserLabel({ label }: Props) {
return (
<span className="bg-sky-700 text-sky-50 rounded-lg p-3 text-sm">
{label}
</span>
);
}
|