···11+// Copyright (c) Jupyter Development Team.
22+// Distributed under the terms of the Modified BSD License.
33+44+// including this file in a package allows for the use of import statements
55+// with svg files. Example: `import xSvg from 'path/xSvg.svg'`
66+77+// for use with raw-loader in Webpack.
88+// The svg will be imported as a raw string
99+1010+declare module '*.svg' {
1111+ const value: string;
1212+ export default value;
1313+}