mirror of
				https://github.com/checktheroads/hyperglass
				synced 2024-05-11 05:55:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			276 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			276 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { IconButton } from '@chakra-ui/react';
 | |
| 
 | |
| import type { TTableIconButton } from './types';
 | |
| 
 | |
| export const TableIconButton: React.FC<TTableIconButton> = (props: TTableIconButton) => (
 | |
|   <IconButton size="sm" borderWidth={1} {...props} aria-label="Table Icon Button" />
 | |
| );
 |