ciekawostki preparations

This commit is contained in:
2022-12-27 20:55:18 +01:00
parent f39e63cf6b
commit 2cce453d30
4 changed files with 79 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ type iconselection =
| "Link2"
| "ExternalLink"
| "Code"
| "Info"
| "Twitter"
| "GitHub"
| "YouTube"
@@ -120,6 +121,26 @@ const Icon = ({ icon, width, height, ...props }: iconprops) => {
<polyline points="8 6 2 12 8 18" />
</svg>
);
case "Info":
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={width || 24}
height={height || 24}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
className="feather feather-info"
{...props}
>
<circle cx="12" cy="12" r="10" />
<line x1="12" y1="16" x2="12" y2="12" />
<line x1="12" y1="8" x2="12.01" y2="8" />
</svg>
);
case "Twitter":
// twitter icon courtesy of simpleicons.org
return (