/// import type { SvelteComponentTyped } from "svelte"; export interface DividerProps extends svelte.JSX.HTMLAttributes { /** * Adds a text to the middle of the line. * @default null */ text?: string | null; } export default class Divider extends SvelteComponentTyped< DividerProps, {}, {} > {}