From 1c97710d56d19abe54d7df7878ff586a9e070a3b Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Sun, 11 Sep 2022 12:14:49 +0630 Subject: [PATCH] Create Hr component for horizontal line --- src/components/Hr.astro | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/components/Hr.astro diff --git a/src/components/Hr.astro b/src/components/Hr.astro new file mode 100644 index 0000000..c902bdf --- /dev/null +++ b/src/components/Hr.astro @@ -0,0 +1,11 @@ +--- +export interface Props { + className?: string; +} + +const { className } = Astro.props; +--- + +
+
+