Convert raw SVG markup to a React component.
export function MyIcon(props: React.SVGProps<SVGSVGElement>) {
return (
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" {...props}>
<circle cx="12" cy="12" r="10" />
<path d="M8 12 L11 15 L16 9" />
</svg>
);
}