From e96af5ce5e8dd00cf8a31d4812f416583defa449 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Sun, 13 Apr 2025 13:00:43 +0200 Subject: New article, fix sass --- src/components/Alert.astro | 57 ---------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 src/components/Alert.astro (limited to 'src/components/Alert.astro') diff --git a/src/components/Alert.astro b/src/components/Alert.astro deleted file mode 100644 index 0cb5fa2..0000000 --- a/src/components/Alert.astro +++ /dev/null @@ -1,57 +0,0 @@ ---- -import { Icon } from "astro-icon/components"; - -interface Props { - type: "note" | "warning"; -} - -const { type } = Astro.props; - -const icon = { - note: "ph:info", - warning: "ph:warning", -}[type]; ---- - - - - -- cgit v1.3