whits
    Preparing search index...

    Type Alias SvgAttributes<T>

    SvgAttributes: Record<
        SvgAttribute<T>
        | `data-${string}`
        | SvgGlobalAttribute,
        string | boolean,
    >

    An object that represents the attributes of an SVG tag. It is a record type that maps attribute names to their values.

    Type Parameters