mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
export default function ReactInlineSVG({ src, innerRef, cacheRequests, preProcessor, ...rest }) {
|
||
|
return <svg id={src} ref={innerRef} {...rest} />;
|
||
|
}
|
||
|
|
||
|
export const cacheStore = {};
|