From bc6e373e9f4e33711cbab53538cdc0b2070d9cd9 Mon Sep 17 00:00:00 2001 From: Triston Armstrong Date: Tue, 9 Jan 2024 00:08:06 -0600 Subject: [PATCH] add urls to social links --- components/SocialLinks/SocialLinks.js | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/components/SocialLinks/SocialLinks.js b/components/SocialLinks/SocialLinks.js index da97d0e..e2cdb90 100644 --- a/components/SocialLinks/SocialLinks.js +++ b/components/SocialLinks/SocialLinks.js @@ -3,13 +3,24 @@ import { SocialLink } from "./SocialLink" export function SocialLinksList() { const width = 26 const size = '1.6rem' + const style = { width: size, heigth: size } + const className = 'hover-scale' + const viewBox = `0 0 ${width} ${width}` + const fill = 'none' + const stroke = 'currentColor' + const strokeWidth = "2" + const strokeLinecap = "round" + const strokeLinejoin = "round" + const xmlns = "http://www.w3.org/2000/svg" + + const props = { style, className, viewBox, fill, stroke, strokeWidth, strokeLinecap, xmlns } return (
- } /> - } /> - } /> - } /> - } /> + } /> + } /> + } /> + } /> + } />
) }