8 lines
141 B
Rust
8 lines
141 B
Rust
use tailwind_fuse::merge::tw_merge;
|
|
|
|
pub mod notification;
|
|
|
|
pub fn cn(classes: impl AsRef<str>) -> String {
|
|
tw_merge(classes.as_ref())
|
|
}
|