v-ingredients
Version:
Reusable Components
39 lines (32 loc) • 513 B
Markdown
# Icon List
## Props
```javascript
tippyConfig: {
type: Object,
default: () => ({
arrow: true,
theme: 'light',
placement: 'top',
interactive: true,
} as ITippyConfig),
}
items: {
type: Array,
required: true,
}
showTooltipIcon:{
type:Boolean,
default:true
}
```
## Implemented Components
* [Icon](../Icon/README.md)
## Interface
```typescript
ITippyConfig {
arrow: boolean
theme: string
placement: string
interactive: boolean
}
```