mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
21 lines
434 B
TypeScript
21 lines
434 B
TypeScript
|
import * as React from "react";
|
||
|
|
||
|
import { ISvgIcons } from "./type";
|
||
|
|
||
|
export const DoubleCircleIcon: React.FC<ISvgIcons> = ({
|
||
|
className = "text-current",
|
||
|
...rest
|
||
|
}) => (
|
||
|
<svg
|
||
|
viewBox="0 0 24 24"
|
||
|
className={`${className} stroke-2`}
|
||
|
stroke="currentColor"
|
||
|
fill="none"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
{...rest}
|
||
|
>
|
||
|
<circle cx="12" cy="12" r="9" />
|
||
|
<circle cx="12" cy="12" r="5.625" />
|
||
|
</svg>
|
||
|
);
|