mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
15 lines
319 B
TypeScript
15 lines
319 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface SearchSkeletonProps {
|
|
/**
|
|
* Specify the size of the search input
|
|
* @default "md"
|
|
*/
|
|
size?: "sm" | "md" | "lg";
|
|
}
|
|
|
|
export default class SearchSkeleton extends SvelteComponentTyped<
|
|
SearchSkeletonProps,
|
|
Record<string, any>,
|
|
{}
|
|
> {}
|