mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
20 lines
410 B
Svelte
20 lines
410 B
Svelte
<script>
|
|
/**
|
|
* @deprecated
|
|
* This component will be removed in version 1.0.0.
|
|
*/
|
|
|
|
/** Set the size of the icon */
|
|
export let size = 16;
|
|
</script>
|
|
|
|
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
|
<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>
|