svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
21 lines (20 loc) • 549 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
maxRotation?: number;
setBrightness?: boolean;
class?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type TiltProps = typeof __propDef.props;
export type TiltEvents = typeof __propDef.events;
export type TiltSlots = typeof __propDef.slots;
export default class Tilt extends SvelteComponentTyped<TiltProps, TiltEvents, TiltSlots> {
}
export {};