29 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { FC } from 'react';
 | 
						|
 | 
						|
interface IconMenuTablesProps {
 | 
						|
    className?: string;
 | 
						|
}
 | 
						|
 | 
						|
const IconMenuTables: FC<IconMenuTablesProps> = ({ className }) => {
 | 
						|
    return (
 | 
						|
        <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
 | 
						|
            <path
 | 
						|
                opacity="0.5"
 | 
						|
                d="M12 22C7.28595 22 4.92893 22 3.46447 20.5355C2 19.0711 2 16.714 2 12C2 7.28595 2 4.92893 3.46447 3.46447C4.92893 2 7.28595 2 12 2C16.714 2 19.0711 2 20.5355 3.46447C22 4.92893 22 7.28595 22 12C22 16.714 22 19.0711 20.5355 20.5355C19.0711 22 16.714 22 12 22Z"
 | 
						|
                fill="currentColor"
 | 
						|
            />
 | 
						|
            <path d="M18.75 8C18.75 8.41421 18.4142 8.75 18 8.75H6C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25H18C18.4142 7.25 18.75 7.58579 18.75 8Z" fill="currentColor" />
 | 
						|
            <path
 | 
						|
                d="M18.75 12C18.75 12.4142 18.4142 12.75 18 12.75H6C5.58579 12.75 5.25 12.4142 5.25 12C5.25 11.5858 5.58579 11.25 6 11.25H18C18.4142 11.25 18.75 11.5858 18.75 12Z"
 | 
						|
                fill="currentColor"
 | 
						|
            />
 | 
						|
            <path
 | 
						|
                d="M18.75 16C18.75 16.4142 18.4142 16.75 18 16.75H6C5.58579 16.75 5.25 16.4142 5.25 16C5.25 15.5858 5.58579 15.25 6 15.25H18C18.4142 15.25 18.75 15.5858 18.75 16Z"
 | 
						|
                fill="currentColor"
 | 
						|
            />
 | 
						|
        </svg>
 | 
						|
    );
 | 
						|
};
 | 
						|
 | 
						|
export default IconMenuTables;
 |