# WindowIcon

`import { WindowIcon } from "destack:display/binding";`

Window icon image.

```ds title="WindowIcon"
export struct WindowIcon {
    width: uint32;
    height: uint32;
    rgba: uint8[];
}
```

[language/library/src/display/binding/window.ds:197:204](https://github.com/destack-sh/destack/blob/main/language/library/src/display/binding/window.ds#L197-L204)

## Members

### `width: uint32`

Pixel width.

### `height: uint32`

Pixel height.

### `rgba: uint8[]`

RGBA8 pixel bytes.
