mirror of
https://github.com/unraid/api.git
synced 2026-01-06 00:30:22 -06:00
13 lines
411 B
Vue
13 lines
411 B
Vue
<script setup lang="ts">
|
|
/**
|
|
* The purpose of this component is to have the ability to pass a
|
|
* white Loading component as a prop into a different component.
|
|
* I couldn't figure out how use the base BrandLoading coponent
|
|
* as a prop iteself and also pass in prop values to change the gradient colors.
|
|
*/
|
|
</script>
|
|
|
|
<template>
|
|
<BrandLoading gradient-start="#ffffff" gradient-stop="#ffffff" />
|
|
</template>
|