fluent-svelte-extra
Version:
A faithful implementation of Microsoft's Fluent Design System in Svelte.
24 lines (23 loc) • 768 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
value?: any;
disabled?: boolean;
selected?: boolean;
class?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
icon: {};
default: {};
};
};
export declare type SegmentedControlButtonProps = typeof __propDef.props;
export declare type SegmentedControlButtonEvents = typeof __propDef.events;
export declare type SegmentedControlButtonSlots = typeof __propDef.slots;
export default class SegmentedControlButton extends SvelteComponentTyped<SegmentedControlButtonProps, SegmentedControlButtonEvents, SegmentedControlButtonSlots> {
}
export {};