This commit is contained in:
zhangkai
2024-06-05 14:27:06 +08:00
commit b825dcd4d5
730 changed files with 100244 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import React, { forwardRef } from "react";
import { ReactComponent as Github } from "./Github.svg";
export const GithubIcon = forwardRef<
SVGSVGElement & { className: any },
React.PropsWithChildren<{ className?: string }>
>(({className,...props}, ref) => {
return <Github ref={ref} {...props} className={className || ''}/>;
});