mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-26 13:45:16 -07:00
color
This commit is contained in:
@@ -29,12 +29,12 @@ function ChecklistRow({ icon, title, description, ready, action }: RowProps) {
|
|||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
'flex items-start gap-3 rounded-lg border p-3.5 transition-colors',
|
'flex items-start gap-3 rounded-lg border p-3.5 transition-colors',
|
||||||
ready ? 'border-emerald-500/20 bg-emerald-500/5' : 'border-border bg-muted/20',
|
ready ? 'border-accent/20 bg-accent/5' : 'border-border bg-muted/20',
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div className="mt-0.5 shrink-0">
|
<div className="mt-0.5 shrink-0">
|
||||||
{ready ? (
|
{ready ? (
|
||||||
<CheckCircle2 className="h-5 w-5 text-emerald-500" />
|
<CheckCircle2 className="h-5 w-5 text-accent" />
|
||||||
) : (
|
) : (
|
||||||
<Circle className="h-5 w-5 text-muted-foreground/50" />
|
<Circle className="h-5 w-5 text-muted-foreground/50" />
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user