UNPKG

@skeletonlabs/skeleton

Version:

A SvelteKit component library.

32 lines (31 loc) 1.06 kB
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; /** Enables the active state styles when set true.*/ selected?: boolean | undefined; /** Provide arbitrary classes to style the lead region.*/ regionLead?: string | undefined; /** Provide arbitrary classes to style the label region.*/ regionLabel?: string | undefined; hover?: string | undefined; active?: string | undefined; spacing?: string | undefined; aspectRatio?: string | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: { lead: {}; default: {}; }; }; export type AppRailAnchorProps = typeof __propDef.props; export type AppRailAnchorEvents = typeof __propDef.events; export type AppRailAnchorSlots = typeof __propDef.slots; export default class AppRailAnchor extends SvelteComponentTyped<AppRailAnchorProps, AppRailAnchorEvents, AppRailAnchorSlots> { } export {};