* chore: cycle custom svg icon added and code refactor * chore: module code refactor * style: cycle ui revamp and code refactor * chore: cycle card view layout fix * chore: layout fix * style: module and cycle title tooltip position
20 lines
435 B
TypeScript
20 lines
435 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>
|
|
);
|