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