sebikostudio-icons
Version:
A collection of icon components
16 lines (11 loc) • 1.26 kB
JavaScript
import React, { forwardRef } from 'react';
export const StrategyIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "strategy, circles, cross, navigate, arrow, plan, objectives"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M18.5 5.5C18.5 6.60457 17.6046 7.5 16.5 7.5C15.3954 7.5 14.5 6.60457 14.5 5.5C14.5 4.39543 15.3954 3.5 16.5 3.5C17.6046 3.5 18.5 4.39543 18.5 5.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10.5 14.5C10.5 15.6046 9.60457 16.5 8.5 16.5C7.39543 16.5 6.5 15.6046 6.5 14.5C6.5 13.3954 7.39543 12.5 8.5 12.5C9.60457 12.5 10.5 13.3954 10.5 14.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M12 5.5H8.5C4.63401 5.5 1.5 8.63401 1.5 12.5V16.5M12 5.5L9.5 8M12 5.5L9.5 3" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14.5 12.5L18.5 16.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 12.5L14.5 16.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default StrategyIcon;