feat(app): refactor VersionStatus component
This commit is contained in:
parent
c18ad0a452
commit
f8ad8cc0af
12
apps/app/src/components/Changelog/VersionStatus.tsx
Normal file
12
apps/app/src/components/Changelog/VersionStatus.tsx
Normal 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" />
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user