Files
bishengWeb/src/components/bs-icons/setting/index.tsx
zhangkai b825dcd4d5 1
2024-06-05 14:27:06 +08:00

10 lines
303 B
TypeScript

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