mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
12 lines
228 B
Svelte
12 lines
228 B
Svelte
<script>
|
|
export let size = 16;
|
|
</script>
|
|
|
|
<div
|
|
class:bx--icon--skeleton={true}
|
|
{...$$restProps}
|
|
style="{$$restProps.style}; width: {size}px; height: {size}px"
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave />
|