-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c21419b
commit 023839c
Showing
7 changed files
with
85 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
<template> | ||
<span class="inline-flex items-center justify-center rounded pl-2 pr-0.5 bg-primaryDark"> | ||
<icon-lucide-file class="opacity-75 svg-icons" /> | ||
<span class="px-2 truncate max-w-54"><slot></slot></span> | ||
<span | ||
class="inline-flex items-center justify-center space-x-1 rounded bg-primaryDark px-2" | ||
> | ||
<IconLucideFile class="svg-icons opacity-75" /> | ||
<span class="max-w-54 truncate"><slot></slot></span> | ||
</span> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import IconLucideFile from "~icons/lucide/file" | ||
</script> |