diff --git a/src/components/helper/StatusBadge.tsx b/src/components/helper/StatusBadge.tsx new file mode 100644 index 00000000..fa15812e --- /dev/null +++ b/src/components/helper/StatusBadge.tsx @@ -0,0 +1,44 @@ +import Badge from '@/components/Badge'; +import { cn } from '@/lib/helper'; +import { Color } from '@/types/theme'; + +interface StatusBadgeProps { + color: Color; + text: string; +} + +const StatusBadge = ({ color = 'neutral', text }: StatusBadgeProps) => { + return ( + + + + + + {text} + + ); +}; + +export default StatusBadge;