22 lines
		
	
	
		
			472 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			472 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
 | 
						|
 | 
						|
const dividerProps = buildProps({
 | 
						|
  direction: {
 | 
						|
    type: String,
 | 
						|
    values: ["horizontal", "vertical"],
 | 
						|
    default: "horizontal"
 | 
						|
  },
 | 
						|
  contentPosition: {
 | 
						|
    type: String,
 | 
						|
    values: ["left", "center", "right"],
 | 
						|
    default: "center"
 | 
						|
  },
 | 
						|
  borderStyle: {
 | 
						|
    type: definePropType(String),
 | 
						|
    default: "solid"
 | 
						|
  }
 | 
						|
});
 | 
						|
 | 
						|
export { dividerProps };
 | 
						|
//# sourceMappingURL=divider.mjs.map
 |