feat(app): refactor VersionStatus component

This commit is contained in:
Lars Hampe 2024-10-10 22:06:57 +02:00
parent c18ad0a452
commit f8ad8cc0af

View File

@ -0,0 +1,12 @@
export const VersionStatus = ({ status }: { status: string }) => {
switch (status) {
case 'draft':
return <div className="w-3 h-3 rounded-full bg-amber-600" />
case 'published':
return <div className="w-3 h-3 rounded-full bg-emerald-600" />
case 'review':
return <div className="w-3 h-3 rounded-full bg-sky-600" />
default:
return <div className="w-3 h-3 rounded-full bg-neutral-600" />
}
}