sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 609 B
JavaScript
import React, { forwardRef } from 'react';
export const CodeIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "code, slash"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M14.5 6.5L18.5 9.99999L14.5 13.5M5.5 6.5L1.5 9.99999L5.5 13.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M12.5 3.5L7.5 16.5" stroke="currentColor" strokeLinecap="round"/>
</svg>
));
export default CodeIcon;