fluent-svelte-extra
Version:
A faithful implementation of Microsoft's Fluent Design System in Svelte.
23 lines (22 loc) • 768 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
variant?: "caption" | "body" | "bodyStrong" | "bodyLarge" | "bodyLargeStrong" | "subtitle" | "title" | "titleLarge" | "display";
tag?: any;
class?: string;
element?: HTMLElement;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type TextBlockProps = typeof __propDef.props;
export declare type TextBlockEvents = typeof __propDef.events;
export declare type TextBlockSlots = typeof __propDef.slots;
export default class TextBlock extends SvelteComponentTyped<TextBlockProps, TextBlockEvents, TextBlockSlots> {
}
export {};