# 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
}
```