UNPKG

sebikostudio-icons

Version:
12 lines (7 loc) 908 B
import React, { forwardRef } from 'react'; export const StrokeDashArrayIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "stroke dash array, array, stroke, dash, dashed, curve, bezier curve"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M1.5 1.48755C2.01541 1.48755 2.49634 1.51425 2.94552 1.56555M6.51239 2.8443C7.31224 3.42601 7.90729 4.16571 8.37221 5.00538M9.67484 8.60032C9.79217 9.0622 9.90218 9.52973 10.0122 9.99712C10.1221 10.4646 10.2321 10.932 10.3494 11.3936M11.6497 14.9826C12.1132 15.8198 12.706 16.5564 13.5023 17.1356M17.0573 18.4097C17.5055 18.4609 17.9855 18.4875 18.5 18.4875" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default StrokeDashArrayIcon;