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