RustPoint Tools

SVG to React Component

Convert SVG snippets into React TSX components.

Back to tools
import type { SVGProps } from "react";

export function Icon(props: SVGProps<SVGSVGElement>) {
  return (<svg {...props} viewBox="0 0 24 24"><path d="M4 12h16"/></svg>);
}