9 lines
326 B
TypeScript
9 lines
326 B
TypeScript
export default function MagentMark() {
|
|
return (
|
|
<svg className="magent-mark" viewBox="0 0 40 40" fill="none" aria-hidden="true">
|
|
<rect x=".5" y=".5" width="39" height="39" rx="11" fill="#242329" stroke="#45434f" />
|
|
<path d="M10 29V11h4l6 9 6-9h4v18h-4V18l-6 8-6-8v11h-4Z" fill="#dedaff" />
|
|
</svg>
|
|
);
|
|
}
|