You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
365 B
12 lines
365 B
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' /> |
|
);
|
|
|