chore: add beta badge component

This commit is contained in:
steven
2023-09-06 00:06:04 +08:00
parent 5e6190b181
commit cff6c54b52
2 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,9 @@
const BetaBadge = () => {
return (
<div className="text-xs border px-1 text-gray-500 bg-gray-100 rounded-full">
<span>Beta</span>
</div>
);
};
export default BetaBadge;