14 lines
494 B
TypeScript
14 lines
494 B
TypeScript
// Pixelfed.tsx
|
|
import React from "react";
|
|
|
|
let PixelfedIcon = () => {
|
|
return (
|
|
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<title>Pixelfed</title>
|
|
<path d="M12 24C5.3726 24 0 18.6274 0 12S5.3726 0 12 0s12 5.3726 12 12-5.3726 12-12 12m-.9526-9.3802h2.2014c2.0738 0 3.7549-1.6366 3.7549-3.6554S15.3226 7.309 13.2488 7.309h-3.1772c-1.1964 0-2.1663.9442-2.1663 2.1089v8.208z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default PixelfedIcon;
|