material_symbols/lib.rs
1//! This crate provides a simple generated type, `Symbol`, to represent
2//! any one of the many [Material Symbols](https://fonts.google.com/icons).
3
4#![doc(html_root_url = "https://docs.rs/material-symbols/0.1.0")]
5
6include!(concat!(env!("OUT_DIR"), "/generated.rs"));
7
8#[cfg(test)]
9mod tests {
10 use super::Symbol;
11
12 #[test]
13 fn symbol_works() {
14 assert_eq!(Symbol::Menu.name(), "menu");
15 }
16}