jackmerrill.com/components/Images/CodeIcon.tsx

7 lines
303 B
TypeScript
Raw Normal View History

2021-04-13 19:39:58 -07:00
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;