--- import Icon from '@ui/Icon.astro' import DropdownMenu from '@ui/DropdownMenu.astro' interface Props { id: string icons?: boolean /** hide-text param; not used by current call sites */ hideText?: boolean reverse?: boolean justified?: boolean activity?: boolean disabled?: boolean dropdown?: boolean settings?: boolean animation?: boolean } const { id, icons, hideText, reverse = false, justified, activity, disabled, dropdown, settings, animation } = Astro.props const iconClass = hideText ? undefined : 'me-2' const navClass = `nav nav-tabs card-header-tabs${reverse ? ' flex-row-reverse' : ''}${justified ? ' nav-fill' : ''}` const paneClass = `tab-pane${animation ? ' fade' : ''}` ---