hc99's picture
Add files using upload-large-folder tool
8766bc5 verified
raw
history blame
388 Bytes
<script lang="ts">
import { BaseButton } from "@gradio/button/static";
export let dependency_index: number;
export let run: (id: number) => Promise<void>;
</script>
<span class="space" />
<BaseButton variant="primary" on:click={run.bind(null, dependency_index)}>
Try It Out
</BaseButton>
<style>
.space {
display: flex;
flex-basis: 1;
margin-top: var(--size-4);
}
</style>