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