Finish adding blog posts

This commit is contained in:
Bad Manners 2024-09-14 09:08:58 -03:00
parent 4a3ee88f77
commit cf180442c3
No known key found for this signature in database
GPG key ID: 8C88292CCB075609
21 changed files with 178 additions and 40 deletions

View file

@ -0,0 +1,15 @@
---
import SVGIcon from "./SVGIcon.astro";
type Props = {
width: string;
height: string;
class?: string;
};
---
<SVGIcon {...Astro.props} viewBox="0 0 512 512">
<path
d="M192 32c0 17.7 14.3 32 32 32c123.7 0 224 100.3 224 224c0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32c70.7 0 128 57.3 128 128c0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192c-17.7 0-32 14.3-32 32zM96 144c0-26.5-21.5-48-48-48S0 117.5 0 144L0 368c0 79.5 64.5 144 144 144s144-64.5 144-144s-64.5-144-144-144l-16 0 0 96 16 0c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48l0-224z"
></path>
</SVGIcon>

View file

@ -1,5 +1,6 @@
export { default as IconArrowBack } from "./IconArrowBack.astro";
export { default as IconArrowUp } from "./IconArrowUp.astro";
export { default as IconBlog } from "./IconBlog.astro";
export { default as IconBook } from "./IconBook.astro";
export { default as IconBriefcase } from "./IconBriefcase.astro";
export { default as IconChevronLeft } from "./IconChevronLeft.astro";