UNPKG

sebikostudio-icons

Version:
17 lines (12 loc) 1.35 kB
import React, { forwardRef } from 'react'; export const StepperIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "stepper, steps, progress, bar"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M4.5 11.5H7.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M12.5 11.5H15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M4.5 11.5C4.5 12.3284 3.82843 13 3 13C2.17157 13 1.5 12.3284 1.5 11.5C1.5 10.6716 2.17157 10 3 10C3.82843 10 4.5 10.6716 4.5 11.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M18.5 11.5C18.5 12.3284 17.8284 13 17 13C16.1716 13 15.5 12.3284 15.5 11.5C15.5 10.6716 16.1716 10 17 10C17.8284 10 18.5 10.6716 18.5 11.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M12.5 11.5C12.5 12.8807 11.3807 14 10 14C8.61929 14 7.5 12.8807 7.5 11.5C7.5 10.1193 8.61929 9 10 9C11.3807 9 12.5 10.1193 12.5 11.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M8.5 5L10 6.5L12.5 3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default StepperIcon;