mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
14 lines
408 B
Svelte
14 lines
408 B
Svelte
<script>
|
|
let className = undefined;
|
|
export { className as class };
|
|
export let style = undefined;
|
|
|
|
import { cx } from '../../lib';
|
|
|
|
const _class = cx('--radio-button-wrapper', className);
|
|
</script>
|
|
|
|
<div on:click on:mouseover on:mouseenter on:mouseleave class={_class} {style}>
|
|
<div class={cx('--radio-button', '--skeleton')} />
|
|
<span class={cx('--radio-button__label', '--skeleton')} />
|
|
</div>
|