Type alias SVGProps_Read2Write<T>

SVGProps_Read2Write<T>: {
    [K in keyof T]: T[K] extends SVGAnimatedLength
        ? string
        : T[K] extends SVGAnimatedLengthList
            ? string
            : T[K] extends SVGAnimatedRect
                ? string
                : T[K] extends SVGAnimatedPreserveAspectRatio
                    ? string
                    : T[K]
}

Type Parameters

Generated using TypeDoc