svantic
Version:
A set of Fomantic-UI components for Svelte framework
15 lines (12 loc) • 423 B
TypeScript
import type { SvelteComponentTyped } from 'svelte/internal'
import type { MountEvent, SvanticProps } from '../../common'
type DropdownDividerProps = SvanticProps & {}
type DropdownDividerEvents = SvanticEvents & {}
/**
* @description Svantic DropdownDivider
*/
declare class DropdownDivider extends SvelteComponentTyped<
DropdownDividerProps,
DropdownDividerEvents
> {}
export default DropdownDivider