import React from 'react';
import { render } from 'react-testing-library';
import IssueIcon from '../index';
describe('', () => {
it('should render a SVG', () => {
const { container } = render();
expect(container.querySelector('svg')).not.toBeNull();
});
});