plane/apps/app/components/icons/error-icon.tsx

27 lines
853 B
TypeScript
Raw Normal View History

2023-04-28 05:56:18 +00:00
import React from "react";
import type { Props } from "./types";
export const ErrorIcon: React.FC<Props> = ({ width = "24", height = "24", className }) => (
<svg
width={width}
height={height}
className={className}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_3327_77971)">
<path
d="M9 1.5C4.8525 1.5 1.5 4.8525 1.5 9C1.5 13.1475 4.8525 16.5 9 16.5C13.1475 16.5 16.5 13.1475 16.5 9C16.5 4.8525 13.1475 1.5 9 1.5ZM12.75 11.6925L11.6925 12.75L9 10.0575L6.3075 12.75L5.25 11.6925L7.9425 9L5.25 6.3075L6.3075 5.25L9 7.9425L11.6925 5.25L12.75 6.3075L10.0575 9L12.75 11.6925Z"
fill="#FF5353"
/>
</g>
<defs>
<clipPath id="clip0_3327_77971">
<rect width="18" height="18" fill="white" />
</clipPath>
</defs>
</svg>
);