Add GPG key
This commit is contained in:
parent
37fba2f602
commit
790ba15725
9 changed files with 361 additions and 116 deletions
15
src/components/icons/IconKey.astro
Normal file
15
src/components/icons/IconKey.astro
Normal 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="M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17l0 80c0 13.3 10.7 24 24 24l80 0c13.3 0 24-10.7 24-24l0-40 40 0c13.3 0 24-10.7 24-24l0-40 40 0c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zM376 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80z"
|
||||
></path>
|
||||
</SVGIcon>
|
||||
|
|
@ -2,6 +2,7 @@ export { default as IconArrowUpRightFromSquare } from "./IconArrowUpRightFromSqu
|
|||
export { default as IconBriefcase } from "./IconBriefcase.astro";
|
||||
export { default as IconCommentDots } from "./IconCommentDots.astro";
|
||||
export { default as IconEnvelope } from "./IconEnvelope.astro";
|
||||
export { default as IconKey } from "./IconKey.astro";
|
||||
export { default as IconLink } from "./IconLink.astro";
|
||||
export { default as IconMoon } from "./IconMoon.astro";
|
||||
export { default as IconSquareRSS } from "./IconSquareRSS.astro";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue