# IconsRender icon-set assets with the inline-svg partial using icon names or paths, plus options for ARIA labels, sizing, classes, and custom attributes.
This guide explains how to render icons with the `inline-svg` partial. For all available arguments, see the [partial reference page](/docs/reference/partial/).

## Examples

### Required arguments only

```html
{{- partial "inline-svg" (dict "page" . "src" "check") }}
```

### All arguments

```html
{{- $opts := dict
  "page" .
  "src" "svgs/tabler-icons/check.svg"
  "id" "svg-check"
  "class" "check-icon"
  "role" "img"
  "title" "Success"
  "desc" "Operation completed successfully"
  "ariaLabelledby" "logo-title"
  "ariaDescribedby" "logo-desc"
  "width" "32"
  "height" "32"
  "stroke-width" "1.5"
}}
{{- partial "inline-svg.html" $opts }}
```
