10 lines
360 B
TypeScript
10 lines
360 B
TypeScript
import type { SVGAttributes } from 'react';
|
|
|
|
export default function AppLogoIcon(props: SVGAttributes<SVGElement>) {
|
|
return (
|
|
<svg {...props} viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M16 3C8.83 3 3 8.83 3 16s5.83 13 13 13 13-5.83 13-13S23.17 3 16 3Zm-3.5 18.35V10.65L22 16l-9.5 5.35Z" />
|
|
</svg>
|
|
);
|
|
}
|