export interface IgrSize {
    /**
     * Gets or sets the horizontal component of Size
    */
    width?: number | string;
    /**
     * Gets or sets the vertical component of Size
    */
    height?: number | string;
}
