portfolio/components/icons/CodeIcon.tsx
Ryan Freeman 6c0100e9a3
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m39s
Added new page
2024-10-09 21:49:31 +01:00

11 lines
410 B
TypeScript

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>
)
}