added svelte-shadcn
This commit is contained in:
15
src/lib/components/ui/command/command-shortcut.svelte
Normal file
15
src/lib/components/ui/command/command-shortcut.svelte
Normal file
@@ -0,0 +1,15 @@
|
||||
<script lang="ts">
|
||||
import { cn } from '$lib/utils';
|
||||
import type { HTMLAttributes } from 'svelte/elements';
|
||||
|
||||
type $$Props = HTMLAttributes<HTMLSpanElement>;
|
||||
|
||||
let className: string | undefined | null = undefined;
|
||||
export { className as class };
|
||||
</script>
|
||||
|
||||
<span
|
||||
class={cn('ml-auto text-xs tracking-widest text-muted-foreground', className)}
|
||||
{...$$restProps}>
|
||||
<slot />
|
||||
</span>
|
Reference in New Issue
Block a user