@sorens/artist-svelte
Version:
an opinionated and clean UI framework for SvelteKit with theme support built-in
25 lines (24 loc) • 726 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
data?: string;
size?: string | undefined;
width?: string;
height?: string;
color?: string | undefined;
stroke?: string;
fill?: string;
viewBox?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type SvgParserProps = typeof __propDef.props;
export declare type SvgParserEvents = typeof __propDef.events;
export declare type SvgParserSlots = typeof __propDef.slots;
export default class SvgParser extends SvelteComponentTyped<SvgParserProps, SvgParserEvents, SvgParserSlots> {
}
export {};