mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
parent
381bf366aa
commit
18a5f4e5cb
2 changed files with 3 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
||||||
<script>
|
<script>
|
||||||
let className = undefined;
|
let className = undefined;
|
||||||
export { className as class };
|
export { className as class };
|
||||||
export let props = {};
|
export let style = undefined;
|
||||||
|
|
||||||
import { cx } from '../../lib';
|
import { cx } from '../../lib';
|
||||||
|
|
||||||
const _class = cx('--skeleton__placeholder', className);
|
const _class = cx('--skeleton__placeholder', className);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div {...props} class={_class} />
|
<div on:click on:mouseover on:mouseenter on:mouseleave {style} class={_class} />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue