mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
21 lines
312 B
Svelte
21 lines
312 B
Svelte
<script lang="ts">
|
|
import { Search } from "../types";
|
|
</script>
|
|
|
|
<Search />
|
|
|
|
<Search placeholder="Search catalog..." value="Cloud functions" />
|
|
|
|
<Search light />
|
|
|
|
<Search size="lg" />
|
|
|
|
<Search size="sm" />
|
|
|
|
<Search disabled />
|
|
|
|
<Search skeleton />
|
|
|
|
<Search size="lg" skeleton />
|
|
|
|
<Search size="sm" skeleton />
|