~cytrogen/masto-fe

ref: 2d5e2579389fb2bb41e98fd3502d760a33342908 masto-fe/app/javascript/mastodon/components/logo.tsx -rw-r--r-- 392 bytes
2d5e2579 — たいち ひ Rewrite `logo.tsx` as FC (#24909) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import logo from 'mastodon/../images/logo.svg';

export const WordmarkLogo: React.FC = () => (
  <svg viewBox='0 0 261 66' className='logo logo--wordmark' role='img'>
    <title>Mastodon</title>
    <use xlinkHref='#logo-symbol-wordmark' />
  </svg>
);

export const SymbolLogo: React.FC = () => (
  <img src={logo} alt='Mastodon' className='logo logo--icon' />
);