mirror of
				https://github.com/grassrootseconomics/farmstar-survey-ui.git
				synced 2025-11-04 09:48:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			899 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			899 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div
 | 
						|
    id="alert-additional-content-1"
 | 
						|
    class="p-4 mb-4 text-blue-800 border border-blue-300 rounded-lg bg-blue-50 dark:bg-gray-800 dark:text-blue-400 dark:border-blue-800"
 | 
						|
    role="alert"
 | 
						|
  >
 | 
						|
    <div class="flex items-center">
 | 
						|
      <svg
 | 
						|
        class="flex-shrink-0 w-4 h-4 me-2"
 | 
						|
        aria-hidden="true"
 | 
						|
        xmlns="http://www.w3.org/2000/svg"
 | 
						|
        fill="currentColor"
 | 
						|
        viewBox="0 0 20 20"
 | 
						|
      >
 | 
						|
        <path
 | 
						|
          d="M10 .5a9.5 9.5 0 1 0 9.5 9.5A9.51 9.51 0 0 0 10 .5ZM9.5 4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM12 15H8a1 1 0 0 1 0-2h1v-3H8a1 1 0 0 1 0-2h2a1 1 0 0 1 1 1v4h1a1 1 0 0 1 0 2Z"
 | 
						|
        />
 | 
						|
      </svg>
 | 
						|
      <span class="sr-only">Info</span>
 | 
						|
      <h3 class="text-lg font-medium">Info</h3>
 | 
						|
    </div>
 | 
						|
    <div class="mt-2 text-sm">{{ subtitle }}</div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup>
 | 
						|
const props = defineProps(["subtitle"]);
 | 
						|
</script>
 |