Skip to content

Commit

Permalink
fix(ceremony): fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Swepool committed Sep 26, 2024
1 parent 0174bcf commit 8db460e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions ceremony/src/lib/components/Terminal/Print.svelte
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
<script lang="ts">
import { type HTMLAttributes } from "svelte/elements"
type Props = HTMLAttributes<HTMLParagraphElement> & {
class?: string
}
let { children, class: className = "", ...rest }: Props = $props()
let {children, class: className = "", ...rest} = $props()
</script>

<p class="w-fit text-neutral-300 text-sm sm:text-base {className}" {...rest}>{@render children()}</p>

0 comments on commit 8db460e

Please sign in to comment.