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