diff --git a/src/components/icons/IconRSS.astro b/src/components/icons/IconRSS.astro new file mode 100644 index 0000000..5b9bc17 --- /dev/null +++ b/src/components/icons/IconRSS.astro @@ -0,0 +1,21 @@ +--- +const { class: className = "w-5 h-5" } = Astro.props; +--- + + + + + + + diff --git a/src/components/icons/index.js b/src/components/icons/index.js index e9ecf7e..3c0deeb 100644 --- a/src/components/icons/index.js +++ b/src/components/icons/index.js @@ -6,5 +6,16 @@ import IconInstagram from "./IconInstagram.astro"; import IconArrowRight from "./IconArrowRight.astro"; import IconMenu from "./IconMenu.astro"; import IconArrowDownRight from "./IconArrowDownRight.astro"; +import IconRSS from "./IconRSS.astro"; -export { IconSun, IconGithub, IconTwitter, IconFacebook, IconInstagram, IconArrowRight, IconMenu, IconArrowDownRight }; +export { + IconSun, + IconGithub, + IconTwitter, + IconFacebook, + IconInstagram, + IconArrowRight, + IconMenu, + IconArrowDownRight, + IconRSS, +}; diff --git a/src/components/widgets/Footer.astro b/src/components/widgets/Footer.astro index 2ed14e9..877a0ec 100644 --- a/src/components/widgets/Footer.astro +++ b/src/components/widgets/Footer.astro @@ -4,6 +4,7 @@ import { IconInstagram, IconFacebook, IconArrowRight, + IconRSS, } from "~/components/icons"; const {} = Astro.props; --- @@ -196,7 +197,7 @@ const {} = Astro.props;
-