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.
35 lines (34 loc) • 1.05 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { ComponentProps } from 'svelte';
import Header from './Header.svelte';
declare const __propDef: {
props: {
[x: string]: any;
title?: string | string[] | null | undefined;
subheading?: string | string[] | null | undefined;
loading?: boolean | null | undefined;
class?: string | undefined | undefined;
classes?: {
root?: string;
header?: ComponentProps<Header>["classes"];
headerContainer?: string;
content?: string;
actions?: string;
} | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
header: {};
default: {};
contents: {};
actions: {};
};
};
export type CardProps = typeof __propDef.props;
export type CardEvents = typeof __propDef.events;
export type CardSlots = typeof __propDef.slots;
export default class Card extends SvelteComponentTyped<CardProps, CardEvents, CardSlots> {
}
export {};