sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 691 B
JavaScript
import React, { forwardRef } from 'react';
export const RadiobuttonIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "radiobutton, button, component, radio, option"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<circle cx="10" cy="10" r="2.5" fill="currentColor" stroke="currentColor"/>
<path d="M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C14.1421 2.5 17.5 5.85786 17.5 10Z" stroke="currentColor"/>
</svg>
));
export default RadiobuttonIcon;