frohzinn/bcbsma-storage / llama.cpp /tools /ui /src /lib /components /app /actions /ActionIconCopyToClipboard.svelte
frohzinn's picture
download
raw
421 Bytes
<script lang="ts">
import { Copy } from '@lucide/svelte';
import { copyToClipboard } from '$lib/utils';
import ActionIcon from './ActionIcon.svelte';
export let ariaLabel: string = 'Copy to clipboard';
export let canCopy: boolean = true;
export let text: string;
</script>
<ActionIcon
icon={Copy}
tooltip={ariaLabel}
iconSize="h-4 w-4"
disabled={!canCopy}
onclick={() => canCopy && copyToClipboard(text)}
/>

Xet Storage Details

Size:
421 Bytes
·
Xet hash:
8187c4f0e318b6564ae63925f8ca34497902b7c6a394fd53173a13fbe3ad9f64

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.