export default interface IIconList {
    icon: string,
    text: string,
    tooltip?: string
}

export interface ITippyConfig {
    arrow: boolean
    theme: string
    placement: string
    interactive: boolean
}