UNPKG

vuepress-theme-hope

Version:

A light vuepress theme with tons of features

10 lines (9 loc) 315 B
import type { FunctionalComponent } from "vue"; import "../../styles/navbar/toggle-navbar-button.scss"; export interface ToggleNavbarButtonProps { active?: boolean; } declare const ToggleNavbarButton: FunctionalComponent<ToggleNavbarButtonProps, { toggle: () => void; }>; export default ToggleNavbarButton;