mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
15 lines
329 B
TypeScript
15 lines
329 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface TextAreaSkeletonProps {
|
|
/**
|
|
* Set to `true` to visually hide the label text
|
|
* @default false
|
|
*/
|
|
hideLabel?: boolean;
|
|
}
|
|
|
|
export default class TextAreaSkeleton extends SvelteComponentTyped<
|
|
TextAreaSkeletonProps,
|
|
Record<string, any>,
|
|
{}
|
|
> {}
|