mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import React from "react";
|
|
|
|
export const ErrorIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
|
|
return (
|
|
<svg
|
|
version="1.1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 50 50"
|
|
fill="#D75A4A"
|
|
>
|
|
<circle fill="fill" cx="25" cy="25" r="25" />
|
|
</svg>
|
|
);
|
|
};
|