Files
bishengWeb/src/components/bs-icons/menu/system/index.tsx
zhangkai e12f955105 1
2024-08-12 11:27:32 +08:00

9 lines
340 B
TypeScript

import React, { forwardRef } from "react";
import { ReactComponent as System } from "./System.svg";
export const SystemIcon = forwardRef<
SVGSVGElement & { className: any },
React.PropsWithChildren<{ className?: string }>
>(({className,...props}, ref) => {
return <System ref={ref} {...props} className={className || ''}/>;
});