mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 00:06:06 +00:00
* feat(frontend): wip * feat(frontend): button refactor wip * feat(frontend): button refactor wip * feat(frontend): fix build * feat(frontend): fix build * fix(frontend): fix build * fix(frontend): fix buttons styles * fix(frontend): remove dev file * feat(frontend): clean up * feat(frontend): done * feat(frontend): done * feat(frontend): remove duplicated componnet * feat(frontend): wip * feat(frontend): wip * feat(frontend): forked Flow icons * feat(frontend): remove legacy dropdown * feat(frontend): migrated all + remove dependencies * feat(frontend): clean up
12 lines
325 B
Svelte
12 lines
325 B
Svelte
<script lang="ts">
|
|
import { Code2, Plus } from 'lucide-svelte'
|
|
import Button from '../common/button/Button.svelte'
|
|
</script>
|
|
|
|
<!-- Buttons -->
|
|
<div class="flex flex-row gap-2">
|
|
<Button size="sm" spacingSize="xl" startIcon={{ icon: Plus }} href="/scripts/add">
|
|
Script <Code2 class="ml-1.5" size={18} />
|
|
</Button>
|
|
</div>
|