26 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { FC } from 'react';
 | 
						|
 | 
						|
interface IconMenuDocumentationProps {
 | 
						|
    className?: string;
 | 
						|
}
 | 
						|
 | 
						|
const IconMenuDocumentation: FC<IconMenuDocumentationProps> = ({ className }) => {
 | 
						|
    return (
 | 
						|
        <svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
 | 
						|
            <path
 | 
						|
                fillRule="evenodd"
 | 
						|
                clipRule="evenodd"
 | 
						|
                d="M4 4.69434V18.6943C4 20.3512 5.34315 21.6943 7 21.6943H17C18.6569 21.6943 20 20.3512 20 18.6943V8.69434C20 7.03748 18.6569 5.69434 17 5.69434H5C4.44772 5.69434 4 5.24662 4 4.69434ZM7.25 11.6943C7.25 11.2801 7.58579 10.9443 8 10.9443H16C16.4142 10.9443 16.75 11.2801 16.75 11.6943C16.75 12.1085 16.4142 12.4443 16 12.4443H8C7.58579 12.4443 7.25 12.1085 7.25 11.6943ZM7.25 15.1943C7.25 14.7801 7.58579 14.4443 8 14.4443H13.5C13.9142 14.4443 14.25 14.7801 14.25 15.1943C14.25 15.6085 13.9142 15.9443 13.5 15.9443H8C7.58579 15.9443 7.25 15.6085 7.25 15.1943Z"
 | 
						|
                fill="currentColor"
 | 
						|
            />
 | 
						|
            <path
 | 
						|
                opacity="0.5"
 | 
						|
                d="M18 4.00038V5.86504C17.6872 5.75449 17.3506 5.69434 17 5.69434H5C4.44772 5.69434 4 5.24662 4 4.69434V4.62329C4 4.09027 4.39193 3.63837 4.91959 3.56299L15.7172 2.02048C16.922 1.84835 18 2.78328 18 4.00038Z"
 | 
						|
                fill="currentColor"
 | 
						|
            />
 | 
						|
        </svg>
 | 
						|
    );
 | 
						|
};
 | 
						|
 | 
						|
export default IconMenuDocumentation;
 |