duoyun-ui
Version:
A lightweight desktop UI component library, implemented using Gem
15 lines (14 loc) • 521 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
import { DuoyunDividerElement } from '../elements/divider';
export * from '../elements/divider';
interface DyDividerProps extends HTMLAttributes<HTMLElement> {
size?: DuoyunDividerElement['size'];
color?: DuoyunDividerElement['color'];
orientation?: DuoyunDividerElement['orientation'];
position?: DuoyunDividerElement['position'];
}
declare module "svelte/elements" {
interface SvelteHTMLElements {
'dy-divider': DyDividerProps;
}
}