rnk-icons 0.1.0

Terminal icons library for rnk - Nerd Font icons for TUI applications
Documentation
//! Developer/brand icons (Nerd Font)

// Languages/Frameworks
/// Rust
pub const fn rust() -> &'static str {
    ""
}

/// Python
pub const fn python() -> &'static str {
    ""
}

/// JavaScript
pub const fn javascript() -> &'static str {
    ""
}

/// TypeScript
pub const fn typescript() -> &'static str {
    ""
}

/// Go
pub const fn go() -> &'static str {
    ""
}

/// Java
pub const fn java() -> &'static str {
    ""
}

/// C
pub const fn c() -> &'static str {
    ""
}

/// C++
pub const fn cpp() -> &'static str {
    ""
}

/// C#
pub const fn csharp() -> &'static str {
    ""
}

/// Ruby
pub const fn ruby() -> &'static str {
    ""
}

/// PHP
pub const fn php() -> &'static str {
    ""
}

/// Swift
pub const fn swift() -> &'static str {
    ""
}

/// Kotlin
pub const fn kotlin() -> &'static str {
    ""
}

/// Scala
pub const fn scala() -> &'static str {
    ""
}

/// Elixir
pub const fn elixir() -> &'static str {
    ""
}

/// Erlang
pub const fn erlang() -> &'static str {
    ""
}

/// Haskell
pub const fn haskell() -> &'static str {
    ""
}

/// Lua
pub const fn lua() -> &'static str {
    ""
}

/// Perl
pub const fn perl() -> &'static str {
    ""
}

/// R
pub const fn r() -> &'static str {
    "ï³’"
}

/// Julia
pub const fn julia() -> &'static str {
    ""
}

/// Dart
pub const fn dart() -> &'static str {
    ""
}

/// Clojure
pub const fn clojure() -> &'static str {
    ""
}

// Frameworks
/// React
pub const fn react() -> &'static str {
    ""
}

/// Vue
pub const fn vue() -> &'static str {
    "﵂"
}

/// Angular
pub const fn angular() -> &'static str {
    ""
}

/// Svelte
pub const fn svelte() -> &'static str {
    ""
}

/// Node.js
pub const fn nodejs() -> &'static str {
    ""
}

/// Deno
pub const fn deno() -> &'static str {
    ""
}

/// Django
pub const fn django() -> &'static str {
    ""
}

/// Rails
pub const fn rails() -> &'static str {
    ""
}

/// Laravel
pub const fn laravel() -> &'static str {
    ""
}

/// Spring
pub const fn spring() -> &'static str {
    ""
}

/// .NET
pub const fn dotnet() -> &'static str {
    ""
}

// Tools
/// Docker
pub const fn docker() -> &'static str {
    ""
}

/// Kubernetes
pub const fn kubernetes() -> &'static str {
    "󱃾"
}

/// AWS
pub const fn aws() -> &'static str {
    ""
}

/// Azure
pub const fn azure() -> &'static str {
    ""
}

/// Google Cloud
pub const fn gcp() -> &'static str {
    ""
}

/// Terraform
pub const fn terraform() -> &'static str {
    ""
}

/// Ansible
pub const fn ansible() -> &'static str {
    ""
}

/// Jenkins
pub const fn jenkins() -> &'static str {
    ""
}

/// Nginx
pub const fn nginx() -> &'static str {
    ""
}

/// Apache
pub const fn apache() -> &'static str {
    ""
}

// Databases
/// PostgreSQL
pub const fn postgresql() -> &'static str {
    ""
}

/// MySQL
pub const fn mysql() -> &'static str {
    ""
}

/// MongoDB
pub const fn mongodb() -> &'static str {
    ""
}

/// Redis
pub const fn redis() -> &'static str {
    ""
}

/// Elasticsearch
pub const fn elasticsearch() -> &'static str {
    ""
}

/// SQLite
pub const fn sqlite() -> &'static str {
    ""
}

// Platforms
/// Linux
pub const fn linux() -> &'static str {
    ""
}

/// Ubuntu
pub const fn ubuntu() -> &'static str {
    ""
}

/// Debian
pub const fn debian() -> &'static str {
    ""
}

/// Fedora
pub const fn fedora() -> &'static str {
    ""
}

/// Arch Linux
pub const fn arch() -> &'static str {
    ""
}

/// macOS/Apple
pub const fn apple() -> &'static str {
    ""
}

/// Windows
pub const fn windows() -> &'static str {
    ""
}

/// Android
pub const fn android() -> &'static str {
    ""
}

/// iOS
pub const fn ios() -> &'static str {
    ""
}

// Editors
/// Vim
pub const fn vim() -> &'static str {
    ""
}

/// Neovim
pub const fn neovim() -> &'static str {
    ""
}

/// VS Code
pub const fn vscode() -> &'static str {
    ""
}

/// Emacs
pub const fn emacs() -> &'static str {
    ""
}

/// Sublime Text
pub const fn sublime() -> &'static str {
    ""
}

/// IntelliJ
pub const fn intellij() -> &'static str {
    ""
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_dev_icons() {
        assert_eq!(rust(), "");
        assert_eq!(docker(), "");
        assert_eq!(linux(), "");
    }
}