Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 110x | export default function ResetButton({ onReset }: { onReset: () => void }) {
return (
<div className="concept-graph-reset-button" onClick={onReset}>
<svg
width="22"
height="22"
viewBox="0 0 24 24"
fill="none"
stroke="#1E293B"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
style={{ flexShrink: 0 }}
>
<path d="M23 4v6h-6" />
<path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10" />
</svg>
<span className="concept-graph-reset-button-label">
Click to reset graph
</span>
</div>
);
}
|