From 55b9d941de78026f2ae18b1fa1addae72b4df0cf Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 7 Apr 2025 22:32:03 -0500 Subject: [PATCH] feat: add aside --- src/components/Aside.astro | 301 +++++++++++++++++++++++++++++++++++++ 1 file changed, 301 insertions(+) create mode 100644 src/components/Aside.astro diff --git a/src/components/Aside.astro b/src/components/Aside.astro new file mode 100644 index 0000000..593b1a9 --- /dev/null +++ b/src/components/Aside.astro @@ -0,0 +1,301 @@ +--- +import type { Aside as BaseProps } from "@astrojs/starlight/components"; + +type Props = Parameters[0]; + +const { type = "note" } = Astro.props; + +const symbols = { + note: "●", + tip: "◆", + caution: "▲", + danger: "■", +}; +--- + + + + + + + +