From d5d5ca196a190afe7914ce997f25bcbe2ef0cbd8 Mon Sep 17 00:00:00 2001 From: Maximus Date: Mon, 29 Aug 2022 13:47:38 +0300 Subject: [PATCH] added two variants of logo icon --- src/components/Logo.tsx | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx index 2cd65b8..0619745 100644 --- a/src/components/Logo.tsx +++ b/src/components/Logo.tsx @@ -2,37 +2,32 @@ import React from "react"; import classNames from "classnames"; export type Props = { className?: string; + fillColors?: "blue" | "gray"; }; -const Logo = ({ className }: Props) => { +const Logo = ({ className, fillColors = "blue" }: Props) => { return ( -
- +
+