freyr 0.2.8

A UI component library for Dioxus web.
Documentation
1
2
3
4
5
6
7
8
9
pub const SPINNER_STYLES: &str = r#"
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .custom-spinner {
            animation: spin 1s linear infinite;
        }
    "#;