mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
17 lines
307 B
Svelte
17 lines
307 B
Svelte
<script>
|
|
/**
|
|
* Set the size of the icon
|
|
* @type {number} [size=16]
|
|
*/
|
|
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
|
|
></div>
|