mirror of
https://github.com/LukeHagar/ui-development-kit.git
synced 2025-12-06 12:57:44 +00:00
Attempting to correct previous issues with monorepo structure
This commit is contained in:
14
Sveltekit-App/src/lib/Components/Progress.svelte
Normal file
14
Sveltekit-App/src/lib/Components/Progress.svelte
Normal file
@@ -0,0 +1,14 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user