orbital-base-components 0.1.1

Headless base primitives for Orbital — structure, semantics, and accessibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::define_css_token_enum;

define_css_token_enum! {
    /// Line height tokens from the active theme (`--orb-type-line-*`).
    pub enum LineHeight {
        Base200 => "--orb-type-line-sm",
        Base300 => "--orb-type-line-md",
        Base400 => "--orb-type-line-lg",
        Base500 => "--orb-type-line-xl",
    }
}