From 1be7435da569ffa85d45f82567db535e9c3341d9 Mon Sep 17 00:00:00 2001 From: Kata Date: Sun, 18 Feb 2018 17:38:16 -0600 Subject: [PATCH] logotype: render font as path instead of text --- UI/.eslintrc.js | 8 ++++++-- UI/src/components/logotype/index.js | 18 ++++++++---------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/UI/.eslintrc.js b/UI/.eslintrc.js index c5dd7e9..a367014 100644 --- a/UI/.eslintrc.js +++ b/UI/.eslintrc.js @@ -1,4 +1,8 @@ module.exports = { - "extends": "standard", - "plugins": [ "react", "node", "promise", "import" ] + "extends": ["standard", "plugin:react/recommended"], + "plugins": [ "react", "node", "promise", "import" ], + "parser": "babel-eslint", + "parserOptions": { + "jsx": true + } }; \ No newline at end of file diff --git a/UI/src/components/logotype/index.js b/UI/src/components/logotype/index.js index c22d720..9cecf84 100644 --- a/UI/src/components/logotype/index.js +++ b/UI/src/components/logotype/index.js @@ -2,17 +2,15 @@ import React from 'react' const Logotype = ({fill = 'var(--c-7)', width, height, circleFill, typeFill, style, className}) => ( - - - Roleypoly - - - - - - + + + + + + + - + )