mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-08-28 22:37:08 +00:00
11 lines
214 B
Svelte
11 lines
214 B
Svelte
<script lang="ts">
|
|
import type { MenuSeparator } from "@/apps/browser/BrowserMenu";
|
|
|
|
type Props = {
|
|
item: MenuSeparator;
|
|
};
|
|
const { item = $bindable() }: Props = $props();
|
|
</script>
|
|
|
|
<hr />
|