> For the complete documentation index, see [llms.txt](https://wotamann.gitbook.io/vuetify-form-base/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wotamann.gitbook.io/vuetify-form-base/input-and-controls-1/icons-and-images.md).

# Icons & Images

## Icon

```javascript
// Icon: 
model: {
    iconLabel: 123456,
    iconValue: 'print',          
}

schema: {
    // use label as icon name
    iconLabel: { 
        type:'icon', 
        large:true,
        label:'print', 
        color: 'blue', 
        tooltip: 'Icon Print'
    }, 
    // use value as icon name
    iconValue: { 
        type:'icon', 
        large:true,
        color: 'green', 
        tooltip: 'Icon Print'
    }
}
```

### [More Informations to Vuetify Icons find here](https://vuetifyjs.com/en/components/icons/).

### [Icons and CSS Example](https://wotamann.github.io/css)

## Image

```javascript
// Image: 
schema: { 
    ctrl: { 
        type:'img', 
        src:'https://picsum.photos/id/11/500/300', 
        maxHeight:150,   
        maxWidth:250
        ...
    }, 
    ... 
}
```

### [More Informations to Vuetify Images find here](https://vuetifyjs.com/en/components/icons/)

### [Image Example](https://wotamann.github.io/images)
