mirror of
				https://github.com/r-freeman/portfolio.git
				synced 2025-11-04 03:01:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			395 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			395 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {Props} from '@/types'
 | 
						|
 | 
						|
export function ChevronDownIcon(props: Props) {
 | 
						|
    return (
 | 
						|
        <svg viewBox="0 0 8 6" aria-hidden="true" {...props}>
 | 
						|
            <path
 | 
						|
                d="M1.75 1.75 4 4.25l2.25-2.5"
 | 
						|
                fill="none"
 | 
						|
                strokeWidth="1.5"
 | 
						|
                strokeLinecap="round"
 | 
						|
                strokeLinejoin="round"
 | 
						|
            />
 | 
						|
        </svg>
 | 
						|
    )
 | 
						|
} |