tailwindcss-to-rust-macros 0.1.3

Helpers macros for using the Rust code generated by tailwindcss-to-rust
Documentation
1
2
3
4
5
6
7
8
// This is the code generated by the tailwindcss-to-rust tool.
pub(crate) mod generated;

// You need to re-export the generated structs, the macros, and the
// `ToOptionVecstring` trait.
pub(crate) use generated::{C, M};
// If you're using Dioxus you'll also want to re-export the `DC` macro.
pub(crate) use tailwindcss_to_rust_macros::{ToOptionVecString, C, M};