You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			16 lines
		
	
	
		
			313 B
		
	
	
	
		
			TypeScript
		
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			313 B
		
	
	
	
		
			TypeScript
		
	
| 
											6 years ago
										 | import React from 'react'; | ||
|  | 
 | ||
| 
											5 years ago
										 | type Props = { | ||
| 
											6 years ago
										 |   text: string; | ||
| 
											5 years ago
										 | }; | ||
| 
											6 years ago
										 | 
 | ||
| 
											5 years ago
										 | export const PillDivider = (props: Props) => { | ||
| 
											6 years ago
										 |   return ( | ||
|  |     <div className="panel-text-divider"> | ||
|  |       <div className="panel-text-divider-line" /> | ||
|  |       <span>{props.text}</span> | ||
|  |       <div className="panel-text-divider-line" /> | ||
|  |     </div> | ||
|  |   ); | ||
|  | }; |