From 899877ea698d745dc8427f365d8d664d32981a48 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Sun, 11 Sep 2022 15:19:49 +0630 Subject: [PATCH] Update prop to noPadding instead of className --- src/components/Hr.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Hr.astro b/src/components/Hr.astro index c902bdf..eb3d463 100644 --- a/src/components/Hr.astro +++ b/src/components/Hr.astro @@ -1,11 +1,11 @@ --- export interface Props { - className?: string; + noPadding?: boolean; } -const { className } = Astro.props; +const { noPadding = false } = Astro.props; --- -
+