1
This commit is contained in:
9
src/components/bs-icons/github/index.tsx
Normal file
9
src/components/bs-icons/github/index.tsx
Normal 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 || ''}/>;
|
||||
});
|
||||
Reference in New Issue
Block a user