maud-iconoir 7.11.0

Auto-generated constants for using Iconoir icons in maud.
Documentation
  • Coverage
  • 0%
    0 out of 1674 items documented0 out of 0 items with examples
  • Size
  • Source code size: 173.7 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 7.9 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 21s Average build duration of successful builds.
  • all releases: 21s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jcheatum

maud-iconoir

Auto-generated constants for using Iconoir icons in maud.

[!NOTE] The version of this crate tracks the version of iconoir

Usage

use maud::html;
use maud_iconoir::*;

html! {
    head {
        link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/iconoir-icons/iconoir@main/css/iconoir.css";
    }
    body {
        div class="post-bookends post-footer" {
            span class="control like" {(regular::HEART)}
            span class="control comment" {(regular::CHAT_LINES)}
            span class="control reblog" {(regular::REFRESH_DOUBLE)}
        }
    }
}