sebikostudio-icons
Version:
A collection of icon components
12 lines (7 loc) • 591 B
JavaScript
import React, { forwardRef } from 'react';
export const LightningBoltIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "thunder, spark, quick, fast, blitz"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M10 11.5H3.5L12.5 1.5L11 7.5H16.5L8.5 18.5L10 11.5Z" stroke="currentColor" strokeMiterlimit="1.414" strokeLinecap="square" strokeLinejoin="round"/>
</svg>
));
export default LightningBoltIcon;