This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-19 05:45:15 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
const Logo = () => (
|
2022-10-09 06:55:32 -07:00
|
|
|
<svg viewBox='0 0 261 66' className='logo' role='img'>
|
|
|
|
<title>Mastodon</title>
|
2022-09-28 19:39:33 -07:00
|
|
|
<use xlinkHref='#logo-symbol-wordmark' />
|
2021-04-19 05:45:15 -07:00
|
|
|
</svg>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Logo;
|