This commit is contained in:
zhangkai
2024-08-12 11:27:32 +08:00
parent 5199dbb6e5
commit e12f955105
166 changed files with 6288 additions and 991 deletions

View File

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