mirror of
https://github.com/LukeHagar/ui-development-kit.git
synced 2025-12-06 04:21:49 +00:00
15 lines
305 B
Svelte
15 lines
305 B
Svelte
<script lang="ts">
|
|
import { ProgressRadial } from '@skeletonlabs/skeleton';
|
|
export let width: string = '';
|
|
</script>
|
|
|
|
<div class="grid place-content-center {width}">
|
|
<ProgressRadial
|
|
{width}
|
|
stroke={100}
|
|
meter="stroke-primary-500"
|
|
track="stroke-primary-500/30"
|
|
class="progress-bar"
|
|
/>
|
|
</div>
|