mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-08 22:08:03 -05:00
11 lines
221 B
Svelte
11 lines
221 B
Svelte
<script lang="ts">
|
|
let className: string = '';
|
|
export { className as class };
|
|
</script>
|
|
|
|
<label
|
|
class="block text-sm font-medium text-gray-700 dark:text-gray-200 {className}"
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</label> |