geist-ui-svelte
Version:
<img src="./src/lib/assets/demo-page.png">
29 lines (28 loc) • 883 B
TypeScript
import { SvelteComponent } from "svelte";
import type { HTMLImgAttributes } from "svelte/elements";
declare const __propDef: {
props: {
[x: string]: any;
src: string;
alt: string;
width: HTMLImgAttributes["width"];
height: HTMLImgAttributes["height"];
browserURL?: string | undefined;
browserInvert?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ImageProps = typeof __propDef.props;
export type ImageEvents = typeof __propDef.events;
export type ImageSlots = typeof __propDef.slots;
/**
* Displays an image.
*
* [See Docs](https://geist-ui-svelte.dev/components/image) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
*/
export default class Image extends SvelteComponent<ImageProps, ImageEvents, ImageSlots> {
}
export {};