mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
chore: lift components folder
This commit is contained in:
parent
76df51674d
commit
2200b29b92
301 changed files with 57 additions and 76 deletions
29
src/ProgressIndicator/ProgressIndicator.Skeleton.svelte
Normal file
29
src/ProgressIndicator/ProgressIndicator.Skeleton.svelte
Normal file
|
@ -0,0 +1,29 @@
|
|||
<script>
|
||||
export let vertical = false;
|
||||
</script>
|
||||
|
||||
<ul
|
||||
class:bx--progress={true}
|
||||
class:bx--progress--vertical={vertical}
|
||||
class:bx--skeleton={true}
|
||||
{...$$restProps}
|
||||
on:click
|
||||
on:mouseover
|
||||
on:mouseenter
|
||||
on:mouseleave>
|
||||
{#each [0, 1, 2, 3] as item, i (item)}
|
||||
<li
|
||||
class:bx--progress-step={true}
|
||||
class:bx--progress-step--incomplete={true}>
|
||||
<div
|
||||
class:bx--progress-step-button={true}
|
||||
class:bx--progress-step-button--unclickable={true}>
|
||||
<svg>
|
||||
<path d="M 7, 7 m -7, 0 a 7,7 0 1,0 14,0 a 7,7 0 1,0 -14,0" />
|
||||
</svg>
|
||||
<p class:bx--progress-label={true} />
|
||||
<span class:bx--progress-line={true} />
|
||||
</div>
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
Loading…
Add table
Add a link
Reference in a new issue