UNPKG

zilly-ui

Version:

Zilly web react ui components

14 lines (12 loc) 250 B
import { ReactNode } from "react"; export interface IProps { trigger?: 'click'|'hover', visible?: boolean, list: Array<Ilist>, onVisibleChange?: () => void, } interface Ilist { icon: string, text: string, link: string, }