Macro manganis::classes

source ·
classes!() { /* proc-macro */ }
Expand description

Collects tailwind classes that will be included in the final binary and returns them unmodified

// You can include tailwind classes that will be collected into the final binary
const TAILWIND_CLASSES: &str = manganis::classes!("flex flex-col p-5");
assert_eq!(TAILWIND_CLASSES, "flex flex-col p-5");