Files
bishengWeb/src/components/bs-icons/menu/system/index.tsx

9 lines
340 B
TypeScript
Raw Normal View History

2024-06-05 14:27:06 +08:00
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 || ''}/>;
});