mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
20 lines
308 B
Svelte
20 lines
308 B
Svelte
<script lang="ts">
|
|
import { Search, SearchSkeleton } from "../types";
|
|
</script>
|
|
|
|
<Search
|
|
spellcheck="false"
|
|
expandable
|
|
disabled
|
|
light
|
|
size="sm"
|
|
placeholder="Search catalog..."
|
|
value="Cloud functions"
|
|
on:input
|
|
on:paste
|
|
on:clear
|
|
on:expand
|
|
on:collapse
|
|
/>
|
|
|
|
<SearchSkeleton size="lg" />
|