mukan-ignite/ignite/pkg/cliui/icons/icon.go
Mukan Erkin Törük c32551b6f7
Some checks failed
Docs Deploy / build_and_deploy (push) Has been cancelled
Generate Docs / cli (push) Has been cancelled
Generate Config Doc / cli (push) Has been cancelled
Go formatting / go-formatting (push) Has been cancelled
Check links / markdown-link-check (push) Has been cancelled
Integration / pre-test (push) Has been cancelled
Integration / test on (push) Has been cancelled
Integration / status (push) Has been cancelled
Lint / Lint Go code (push) Has been cancelled
Test / test (ubuntu-latest) (push) Has been cancelled
refactor: replace all github.com upstream refs with git.cw.tr/mukan-network
2026-05-11 03:36:24 +03:00

23 lines
539 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package icons
import (
"git.cw.tr/mukan-network/mukan-ignite/ignite/pkg/cliui/colors"
)
var (
Earth = "🌍"
CD = "💿"
User = "👤"
Tada = "🎉"
Survey = "💬"
Announcement = "🗣️"
// OK is an OK mark.
OK = colors.SprintFunc(colors.Green)("✔")
// NotOK is a red cross mark.
NotOK = colors.SprintFunc(colors.Red)("✘")
// Bullet is a bullet mark.
Bullet = colors.SprintFunc(colors.Yellow)("⋆")
// Info is an info mark.
Info = colors.SprintFunc(colors.Yellow)("𝓲")
)