Files
pages/src/routes/components/Select.md
2022-05-20 00:10:45 -07:00

20 lines
470 B
Markdown

```svelte example raised
<script lang="ts">
import { Select } from "omorphia";
let sortMethod = "downloads"
</script>
<Select
color="raised"
options={[
{ value: "", label: "Relevance" },
{ value: "downloads", label: "Downloads" },
{ value: "follows", label: "Followers" },
{ value: "newest", label: "Recently created" },
{ value: "updated", label: "Recently updated" },
]}
bind:value={sortMethod}
/>
```