mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-05-14 21:36:03 +02:00
23 lines
485 B
TypeScript
23 lines
485 B
TypeScript
interface DirectTraceIconProps {
|
|
className?: string;
|
|
}
|
|
|
|
export function DirectTraceIcon({ className }: DirectTraceIconProps) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className={className}
|
|
aria-hidden="true"
|
|
>
|
|
<path d="M3 12h12" />
|
|
<circle cx="18" cy="12" r="3" />
|
|
</svg>
|
|
);
|
|
}
|