import { render } from '@testing-library/react'
import { CogIcon } from '@heroicons/react/solid'
import { IconButton } from './IconButton'
describe('', () => {
it('should render successfully', () => {
const { baseElement } = render(
)
expect(baseElement).toBeTruthy()
})
})