portfolio/components/icons/CodeIcon.tsx

11 lines
410 B
TypeScript
Raw Normal View History

2024-10-09 20:37:00 +00:00
import {Props} from '@/types'
export function CodeIcon(props: Props) {
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth="1.5" stroke="currentColor"
{...props}>
<path strokeLinecap="round" strokeLinejoin="round"
d="M17.25 6.75 22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3-4.5 16.5"/>
</svg>
)
}