chore: use fontWeight for Text component (#25262)

This commit is contained in:
Alex
2026-01-14 10:25:30 -06:00
committed by GitHub
parent 6fdd1ce41a
commit 6e00fd92ef
16 changed files with 40 additions and 31 deletions

View File

@@ -11,6 +11,6 @@
</script>
<div class="flex justify-between items-center">
<Text class="text-sm font-medium">{title}</Text>
<Text class="text-sm" fontWeight="medium">{title}</Text>
<Icon icon={state ? mdiCheck : mdiClose} class={state ? 'text-primary' : 'text-danger'} size="24" />
</div>