Prettier Changes
This commit is contained in:
parent
829e911674
commit
5bd01c3a22
10 changed files with 69 additions and 79 deletions
src/lib/components/ui/skeleton
|
@ -1,4 +1,4 @@
|
|||
import Root from "./skeleton.svelte";
|
||||
import Root from './skeleton.svelte';
|
||||
|
||||
export {
|
||||
Root,
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
<script lang="ts">
|
||||
import { cn } from "$lib/utils";
|
||||
import type { HTMLAttributes } from "svelte/elements";
|
||||
import { cn } from '$lib/utils';
|
||||
import type { HTMLAttributes } from 'svelte/elements';
|
||||
|
||||
type $$Props = HTMLAttributes<HTMLDivElement>;
|
||||
|
||||
let className: $$Props["class"] = undefined;
|
||||
let className: $$Props['class'] = undefined;
|
||||
export { className as class };
|
||||
</script>
|
||||
|
||||
<div
|
||||
class={cn("animate-pulse rounded-md bg-primary/10", className)}
|
||||
{...$$restProps}
|
||||
/>
|
||||
<div class={cn('animate-pulse rounded-md bg-primary/10', className)} {...$$restProps} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue