summaryrefslogtreecommitdiff
path: root/src/components/JavaScriptIcon.astro
diff options
context:
space:
mode:
authorMatt Kosarek <matt.kosarek@canonical.com>2026-07-08 08:29:04 -0400
committerMatt Kosarek <matt.kosarek@canonical.com>2026-07-08 08:29:04 -0400
commit418396ee5100eda8f6bc036ea35dbbe44db2f91a (patch)
tree78686d2865e0cd18b97abb01ef7478d55ff6e28e /src/components/JavaScriptIcon.astro
parent168eb38557c8ac5698f3ac89b1385089b5b4a5cd (diff)
feature: update styling
Diffstat (limited to 'src/components/JavaScriptIcon.astro')
-rw-r--r--src/components/JavaScriptIcon.astro15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/JavaScriptIcon.astro b/src/components/JavaScriptIcon.astro
new file mode 100644
index 0000000..2894edd
--- /dev/null
+++ b/src/components/JavaScriptIcon.astro
@@ -0,0 +1,15 @@
+---
+import TechIcon from './TechIcon.astro';
+---
+
+<TechIcon name="JavaScript">
+ <svg
+ xmlns="http://www.w3.org/2000/svg"
+ aria-label="JavaScript"
+ viewBox="0 0 512 512"
+ ><rect width="512" height="512" fill="#f7df1e" rx="15%"
+ ></rect><path
+ d="m324,370c10,17 24,29 47,29 20,0 33,-10 33,-24 0,-16 -13,-22 -35,-32l-12,-5c-35,-15 -58,-33 -58,-72 0,-36 27,-64 70,-64 31,0 53,11 68,39l-37,24c-8,-15 -17,-21 -31,-21 -14,0 -23,9 -23,21 0,14 9,20 30,29l12,5c41,18 64,35 64,76 0,43 -34,67 -80,67 -45,0 -74,-21 -88,-49zm-170,4c8,13 14,25 31,25 16,0 26,-6 26,-30V203h48v164c0,50 -29,72 -72,72 -39,0 -61,-20 -72,-44z"
+ ></path></svg
+ >
+</TechIcon>