aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/sun.test.tsx
blob: af52a5f8d5a5052a12256f363d375fee0c2647e8 (plain)
1
2
3
4
5
6
7
8
9
import { render } from '../../../../tests/utils';
import Sun from './sun';

describe('Sun', () => {
  it('renders a sun icon', () => {
    const { container } = render(<Sun />);
    expect(container).toBeDefined();
  });
});