mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			369 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			369 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-divider :width="width" :class="color" :style="`border-width: ${thickness} !important`" />
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    width: {
 | 
						|
      type: String,
 | 
						|
      default: "100px",
 | 
						|
    },
 | 
						|
    thickness: {
 | 
						|
      type: String,
 | 
						|
      default: "2px",
 | 
						|
    },
 | 
						|
    color: {
 | 
						|
      type: String,
 | 
						|
      default: "accent",
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |