sebikostudio-icons
Version:
A collection of icon components
12 lines (7 loc) • 792 B
JavaScript
import React, { forwardRef } from 'react';
export const RepeatIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "repeat, circle, arrows, update, current, up to date"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M3 2.5H7.25C7.38807 2.5 7.5 2.61193 7.5 2.75V6.5M12.5 17.35C15.413 16.3204 17.5 13.2655 17.5 10C17.5 6.37156 14.9234 3.34493 11.5 2.65002M7.5 2.65C4.58702 3.67959 2.5 6.73445 2.5 10C2.5 13.6284 5.07664 16.6551 8.5 17.35M12.5 13.5V17.25C12.5 17.3881 12.6119 17.5 12.75 17.5H17" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default RepeatIcon;