plane/apps/app/components/icons/backlog-state-icon.tsx

22 lines
456 B
TypeScript
Raw Normal View History

2023-02-28 09:12:46 +00:00
import React from "react";
import type { Props } from "./types";
export const BacklogStateIcon: React.FC<Props> = ({
width = "20",
height = "20",
className,
2023-03-01 06:00:49 +00:00
color = "#858e96",
2023-02-28 09:12:46 +00:00
}) => (
<svg
width={width}
height={height}
className={className}
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="10" cy="10" r="9" stroke={color} strokeLinecap="round" strokeDasharray="4 4" />
</svg>
);