mirror of
https://github.com/anotherhadi/ilovetui.git
synced 2026-08-21 03:55:48 +02:00
21b574eb6f
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
15 lines
284 B
Go
15 lines
284 B
Go
package bubbles
|
|
|
|
import (
|
|
"charm.land/bubbles/v2/spinner"
|
|
"charm.land/lipgloss/v2"
|
|
|
|
"github.com/anotherhadi/ilovetui/style"
|
|
)
|
|
|
|
func NewSpinner(opts ...spinner.Option) spinner.Model {
|
|
s := spinner.New(opts...)
|
|
s.Style = lipgloss.NewStyle().Foreground(style.S.Primary)
|
|
return s
|
|
}
|