diff --git a/src/components/OverlayStamp.astro b/src/components/OverlayStamp.astro index 98cc0b6..d5dd994 100644 --- a/src/components/OverlayStamp.astro +++ b/src/components/OverlayStamp.astro @@ -1,18 +1,15 @@ --- interface Props { - children?: any - class?: string + children?: any; + class?: string; } -const { children, class: className } = Astro.props as Props +const { children, class: className } = Astro.props as Props; --- diff --git a/src/components/Perforation.astro b/src/components/Perforation.astro index d8ff2f6..84109a8 100644 --- a/src/components/Perforation.astro +++ b/src/components/Perforation.astro @@ -1,17 +1,14 @@ --- interface Props { - class?: string + class?: string; } -const { class: className } = Astro.props as Props +const { class: className } = Astro.props as Props; ---