sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 1.02 kB
JavaScript
import React, { forwardRef } from 'react';
export const PokeballIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "pokeball, ball, circle, pokemon, catch"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M13 10C13 11.6569 11.6569 13 10 13C8.34315 13 7 11.6569 7 10C7 8.34315 8.34315 7 10 7C11.6569 7 13 8.34315 13 10Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.5 10C18.5 14.6944 14.6944 18.5 10 18.5C5.30558 18.5 1.5 14.6944 1.5 10C1.5 5.30558 5.30558 1.5 10 1.5C14.6944 1.5 18.5 5.30558 18.5 10Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M13 9.5H18" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M2 9.5H7" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default PokeballIcon;