Run pnpm format

This commit is contained in:
venashial
2022-05-20 00:10:45 -07:00
parent 0f6263d82e
commit d37fd6bea0
58 changed files with 653 additions and 687 deletions

View File

@@ -1,19 +1,19 @@
```svelte example raised
<script lang="ts">
import { Select } from "omorphia";
let sortMethod = "downloads"
</script>
<Select
color="raised"
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}
/>
```