mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:21:10 +02:00
fix(shared-ui): resolve Tag identifier collision in TagList
Rename Tag icon import to TagIcon to avoid clash with Tag type from constants. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c02e2649af
commit
56f89b8a53
1 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { PencilSimple, Tag, Trash } from '@manacore/shared-icons';
|
||||
import { PencilSimple, Tag as TagIcon, Trash } from '@manacore/shared-icons';
|
||||
import { DEFAULT_TAG_COLOR } from './constants';
|
||||
import type { Tag } from './constants';
|
||||
|
||||
|
|
@ -66,7 +66,7 @@
|
|||
<div
|
||||
class="w-16 h-16 mb-4 rounded-full bg-gray-100 dark:bg-gray-800 flex items-center justify-center"
|
||||
>
|
||||
<Tag size={32} class="text-gray-400" />
|
||||
<TagIcon size={32} class="text-gray-400" />
|
||||
</div>
|
||||
<h3 class="text-lg font-medium text-foreground mb-1">{emptyMessage}</h3>
|
||||
<p class="text-sm text-muted-foreground">{emptyDescription}</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue