### Features

#### Get width and height of a SVG

If you create an [asset](/documentation/templates#asset) from a [SVG](https://developer.mozilla.org/docs/Web/SVG) file you can now get its width and height.

_Usage example:_

```twig
{% set image = asset('image.svg') %}
<img src="{{ image|url }}" width="{{ image.width }}" height="{{ image.height }}" />
```

See [Templates > asset > Attributes documentation](/documentation/templates#attributes) for details.

### Misc

- Dependencies updated
- Documentation fixed
