sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 865 B
JavaScript
import React, { forwardRef } from 'react';
export const StrokeDashOffsetIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "stroke dash offset, offset, stroke, dash, dashed"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M7.5 6.5H11.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8.5 13.5H12.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M4.5 1.5C7 1.5 9.5 3 9.5 6.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M15.5 18.5C13 18.5 10.5 17 10.5 13.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default StrokeDashOffsetIcon;