mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 12:37:56 +00:00 
			
		
		
		
	* chore: Class name cleanup page-top-bar. * prettier spacing fixes * Review fixes and adds storybook * Circleci fixes
		
			
				
	
	
		
			34 lines
		
	
	
		
			634 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			634 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="column page-top-banner">
 | 
						|
    <h2 class="page-sub-title">
 | 
						|
      {{ headerTitle }}
 | 
						|
    </h2>
 | 
						|
    <p v-if="headerContent" class="small-12 column">
 | 
						|
      {{ headerContent }}
 | 
						|
    </p>
 | 
						|
    <slot></slot>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    headerTitle: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
    headerContent: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
.page-top-banner {
 | 
						|
  border-bottom: 1px solid var(--color-border);
 | 
						|
  background: var(--color-background-light);
 | 
						|
  padding: var(--space-normal) var(--space-large) 0;
 | 
						|
}
 | 
						|
</style>
 |