UNPKG

sebikostudio-icons

Version:
12 lines (7 loc) 617 B
import React, { forwardRef } from 'react'; export const DotIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "dot, circle, point"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M12.5 10C12.5 11.3807 11.3807 12.5 10 12.5C8.61929 12.5 7.5 11.3807 7.5 10C7.5 8.61929 8.61929 7.5 10 7.5C11.3807 7.5 12.5 8.61929 12.5 10Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default DotIcon;