mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
9 lines
213 B
Svelte
9 lines
213 B
Svelte
<script>
|
|
let className = undefined;
|
|
export { className as class };
|
|
export let style = undefined;
|
|
</script>
|
|
|
|
<tbody aria-live={$$props['aria-live'] || 'polite'} class={className} {style}>
|
|
<slot />
|
|
</tbody>
|