From 2345b023a2bb1e82cf8025aa9dc367fdc9ee177e Mon Sep 17 00:00:00 2001 From: Cody Olsen Date: Wed, 17 Aug 2022 06:34:17 +0000 Subject: [PATCH] fix: use currentColor in Unsplash logo svg --- src/components/Icon.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/components/Icon.tsx b/src/components/Icon.tsx index 3e9cbcd..6d68711 100644 --- a/src/components/Icon.tsx +++ b/src/components/Icon.tsx @@ -1,10 +1,15 @@ import React from 'react' +import styled from 'styled-components' + +const Svg = styled.svg` + transform: scale(0.8); +` export default function UnsplashIcon() { return ( - + - + ) }