From 74c5ef867a3a7ef40ddf8b60a28fe6236eb1e3e9 Mon Sep 17 00:00:00 2001 From: Henrique Macedo Date: Fri, 22 Jan 2021 17:46:15 +0000 Subject: [PATCH] Remove TAIKAI logo --- src/index.ts | 3 --- src/ions/taikai-logo.tsx | 36 ------------------------------------ 2 files changed, 39 deletions(-) delete mode 100644 src/ions/taikai-logo.tsx diff --git a/src/index.ts b/src/index.ts index 409caa48..5282ad2e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,9 +1,6 @@ // Test export { Thing } from './thing'; -// Ions -export { default as TaikaiLogo } from './ions/taikai-logo'; - // Atoms export { default as Avatar } from './atoms/avatar'; export { default as Button } from './atoms/button'; diff --git a/src/ions/taikai-logo.tsx b/src/ions/taikai-logo.tsx deleted file mode 100644 index 4b27d3c4..00000000 --- a/src/ions/taikai-logo.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import React, { HTMLAttributes } from 'react'; - -export interface Props extends HTMLAttributes { - fill?: string; -} - -const TaikaiLogo = (props: Props) => { - const { fill = 'url(#linear-gradient)', style } = props; - - return ( - - - - - - - - - - ); -}; - -export default TaikaiLogo;