carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
22 lines (17 loc) • 608 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
type $RestProps = SvelteHTMLElements["div"];
type $Props = {
[key: `data-${string}`]: unknown;
};
export type FluidTextInputSkeletonProps = Omit<$RestProps, keyof $Props> & $Props;
export default class FluidTextInputSkeleton extends SvelteComponentTyped<
FluidTextInputSkeletonProps,
{
click: WindowEventMap["click"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
mouseover: WindowEventMap["mouseover"];
},
Record<string, never>
> {}