webcoreui
Version:
UI component and template library for Astro, Svelte, and React apps styled with Sass.
21 lines (19 loc) • 424 B
text/typescript
import type { ButtonProps } from '../Button/button'
export type MenuProps = {
items?: {
href: string
name: string
target?: ButtonProps['target']
active?: boolean
}[]
logo?: {
url?: string
alt?: string
width?: number
height?: number
html?: string
} | null
centerLogo?: boolean
className?: string
wrapperClassName?: string
}