| 
									
										
										
										
											2021-07-15 14:10:26 +00:00
										 |  |  | import classnames from "classnames"; | 
					
						
							| 
									
										
										
										
											2021-09-22 19:52:38 +00:00
										 |  |  | import React from "react"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-15 14:10:26 +00:00
										 |  |  | import { TextProps } from "../Text"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const Overline: React.FunctionComponent<TextProps> = (props: TextProps) => { | 
					
						
							| 
									
										
										
										
											2021-08-13 18:18:14 +00:00
										 |  |  |   const classes = classnames( | 
					
						
							| 
									
										
										
										
											2021-10-09 13:34:13 +00:00
										 |  |  |     "text-sm capitalize font-medium text-gray-900 dark:text-white", | 
					
						
							| 
									
										
										
										
											2021-09-02 12:13:19 +00:00
										 |  |  |     props?.className | 
					
						
							| 
									
										
										
										
											2021-08-13 18:18:14 +00:00
										 |  |  |   ); | 
					
						
							| 
									
										
										
										
											2021-07-15 14:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-02 12:13:19 +00:00
										 |  |  |   return <p className={classes}>{props?.text || props.children}</p>; | 
					
						
							| 
									
										
										
										
											2021-07-15 14:10:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export default Overline; |