jackmerrill.com/components/Images/CodeIcon.tsx
2021-04-13 21:39:58 -05:00

7 lines
303 B
TypeScript

const CodeIcon = (props: any) => (
<svg xmlns="http://www.w3.org/2000/svg" {...props} fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
)
export default CodeIcon;