blob: 16ef4d40490fecbcc7b1fce0d66c6e4e0ce3a85f (
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-600 text-sky-50 rounded-lg p-3 text-sm">
{label}
</span>
);
}
|