add hyphens to random blueprint name

This commit is contained in:
miloschwartz
2026-04-26 11:11:31 -07:00
parent 491636851f
commit f24f867684
3 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ const checkboxVariants = cva(
outlinePrimarySquare:
"border rounded-[5px] border-input data-[state=checked]:border-primary data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
outlineSquare:
"border rounded-[5px] border-input data-[state=checked]:border-primary data-[state=checked]:bg-muted data-[state=checked]:text-accent-foreground"
"border rounded-[5px] border-input data-[state=checked]:border-primary data-[state=checked]:bg-muted data-[state=checked]:text-foreground"
}
},
defaultVariants: {
@@ -44,7 +44,7 @@ const Checkbox = React.forwardRef<
{...props}
>
<CheckboxPrimitive.Indicator className="flex items-center justify-center">
<Check className="h-4 w-4 text-white" />
<Check className="h-4 w-4 text-current" />
</CheckboxPrimitive.Indicator>
</CheckboxPrimitive.Root>
));