Member Junction
    Preparing search index...

    ViewBox configuration for SVG canvas dimensions and padding

    interface ViewBox {
        height: number;
        padding?:
            | number
            | { bottom?: number; left?: number; right?: number; top?: number };
        width: number;
    }
    Index

    Properties

    Properties

    height: number

    Final pixel height of the SVG

    padding?:
        | number
        | { bottom?: number; left?: number; right?: number; top?: number }

    Padding around content (uniform or per-side)

    width: number

    Final pixel width of the SVG