Skip to content

Commit

Permalink
Modify text on runbar elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSouther committed Dec 24, 2022
1 parent a6eef1c commit fd61f66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/src/runbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const Runbar = (props: { runner: Timer; children?: ReactNode }) => {
data-placement="bottom"
>
{/* <Icon name={runner.state.running ? "pause" : "fast_forward"} /> */}
{runner.state.running ? "⏸" : "▶️"}
{runner.state.running ? "⏸" : "️⏩"}
</button>
<button
className="flex-0"
Expand All @@ -47,8 +47,8 @@ export const Runbar = (props: { runner: Timer; children?: ReactNode }) => {
disabled={runner.state.running}
>
{[
// [2000, `Slow`], // For debugging, basically the same as clicking through
[1000, `Normal`],
// [2000, `Debug`], // For debugging, basically the same as clicking through
[1000, `Slow`],
[500, `Fast`],
[16, `Faster`],
].map(([speed, label]) => (
Expand Down

0 comments on commit fd61f66

Please sign in to comment.