yarcl
    Preparing search index...

    Interface TokenProps

    Design token props shared by every sized, colored component.

    interface TokenProps {
        color?: Color;
        radius?: "size" | Radius;
        size?: Size;
    }

    Hierarchy (View Summary)

    Index
    color?: Color

    Semantic color, from the colors config.

    config.defaults.color
    
    radius?: "size" | Radius

    Border radius, from the radii config, or 'size' for the radius named like the control's size.

    config.defaults.radius
    
    size?: Size

    Control size, from the sizes config.

    config.defaults.size