carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
28 lines (22 loc) • 679 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
type $RestProps = SvelteHTMLElements["div"];
type $Props = {
/**
* Set to `true` to visually hide the label text
* @default false
*/
hideLabel?: boolean;
[key: `data-${string}`]: any;
};
export type TextAreaSkeletonProps = Omit<$RestProps, keyof $Props> & $Props;
export default class TextAreaSkeleton extends SvelteComponentTyped<
TextAreaSkeletonProps,
{
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
},
{}
> {}