blob: 28fa41400809f79f695ac1ec4e296a938135c5f1 (
plain)
| 1
2
3
4
5
6
7
8
9
 | import React, { type SVGProps } from 'react';
const SvgrMock = React.forwardRef<SVGSVGElement, SVGProps<SVGSVGElement>>(
  (props, ref) => <svg ref={ref} {...props} />
);
SvgrMock.displayName = 'SvgrMock';
export const ReactComponent = SvgrMock;
export default SvgrMock;
 |