From 068b9da6bad73a185a10b143328c0c8938324038 Mon Sep 17 00:00:00 2001 From: Ku6epXBOCTuK Date: Thu, 11 Jun 2026 13:05:35 +0500 Subject: [PATCH] style: reformat files --- src/components/OverlayStamp.astro | 11 ++++------- src/components/Perforation.astro | 9 +++------ src/components/Stamp.astro | 16 ++++++++-------- 3 files changed, 15 insertions(+), 21 deletions(-) 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; ---