9 lines
137 B
JavaScript
9 lines
137 B
JavaScript
import ora from "ora";
|
|
export function getLoadAnimation(text) {
|
|
return ora({
|
|
text,
|
|
color: "cyan",
|
|
spinner: "dots",
|
|
});
|
|
}
|