mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-16 08:47:28 +02:00
13 lines
278 B
Svelte
13 lines
278 B
Svelte
<script>
|
|
import TableDropDownButton from './TableDropDownButton.svelte';
|
|
|
|
export let disabled = false;
|
|
export let title = '';
|
|
export let name = 'View';
|
|
if (disabled && !title) {
|
|
title = 'Disabled';
|
|
}
|
|
</script>
|
|
|
|
<TableDropDownButton {name} {title} on:click {disabled} />
|