mirror of
https://github.com/portainer/portainer.git
synced 2025-07-18 21:09:40 +02:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import { forwardRef } from 'react';
|
|
|
|
const SvgrMock = forwardRef<HTMLSpanElement>((props, ref) => (
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
<span ref={ref} {...props} />
|
|
));
|
|
|
|
export default SvgrMock;
|