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 (
- } /> - } /> - } /> - } /> - } /> + } /> + } /> + } /> + } /> + } />
) }