mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-15 05:35:41 +00:00
11 lines
410 B
TypeScript
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>
|
||
|
)
|
||
|
}
|