···11+---
22+'@clack/prompts': minor
33+---
44+55+Adds a new `indicator` option to `spinner`, which supports the original `"dots"` loading animation or a new `"timer"` loading animation.
66+77+```ts
88+import * as p from '@clack/prompts';
99+1010+const spin = p.spinner({ indicator: 'timer' });
1111+spin.start('Loading');
1212+await sleep(3000);
1313+spin.stop('Loaded');