mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
|
import React, { 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
|