Interface GuideSquareParams

Represents parameters for board guide squares in Penpot. This interface includes properties for defining the appearance and size of square guides within a board.

interface GuideSquareParams {
    color: {
        color: string;
        opacity: number;
    };
    size?: number;
}

Properties

Properties

color: {
    color: string;
    opacity: number;
}

The color configuration for the square guides.

size?: number

The optional size of each square guide.