Files
api/web/components/Brand/LoadingWhite.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>