mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
07cc7504ee
* remove wrapping div * update tests, just gotta figure out how to handle fontawesome :( * add spinner.svg which matches the font-awesome spinner * add mock for react-inlinesvg * update mock and fix some tests * fix FormField test * fix CorrelationsPage tests * increase timeout
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 = {};
|