Spinner
indicates that something is being processed and CLI is waiting for it to complete.
import React from 'react';
import {render, Box} from 'ink';
import {Spinner} from '@inkjs/ui';
function Example() {
return <Spinner label="Loading" />;
}
render(<Example />);
Type: string
Label to show next to the spinner.