# Size
Represents dimensions with width and height.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## Size interface

Represents dimensions with width and height.

**Signature:**

```typescript
interface Size
```

## Example

```ts
const size: Size = { width: 100, height: 100 };
```

## Properties

<table>
  <thead>
    <tr>
      <th>
        Property
      </th>

      <th>
        Modifiers
      </th>

      <th>
        Type
      </th>

      <th>
        Description
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        [height](/en/creator-api/values/size/height)
      </td>

      <td />

      <td>
        number
      </td>

      <td>
        Height
      </td>
    </tr>

    <tr>
      <td>
        [width](/en/creator-api/values/size/width)
      </td>

      <td />

      <td>
        number
      </td>

      <td>
        Width
      </td>
    </tr>
  </tbody>
</table>
