RustPoint 工具集合

SVG 转 React Component

把 SVG 片段转换为 React TSX 组件。

返回工具集合
import type { SVGProps } from "react";

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