diff options
Diffstat (limited to 'src/components/molecules/nav/nav.test.tsx')
| -rw-r--r-- | src/components/molecules/nav/nav.test.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/molecules/nav/nav.test.tsx b/src/components/molecules/nav/nav.test.tsx index b0920c8..37b2f41 100644 --- a/src/components/molecules/nav/nav.test.tsx +++ b/src/components/molecules/nav/nav.test.tsx @@ -1,7 +1,6 @@ import { render, screen } from '../../../../tests/utils'; -import Envelop from '../../atoms/icons/envelop'; -import Home from '../../atoms/icons/home'; -import Nav, { type NavItem } from './nav'; +import { Envelop, Home } from '../../atoms'; +import { Nav, type NavItem } from './nav'; const navItems: NavItem[] = [ { id: 'homeLink', href: '/', label: 'Home', logo: <Home /> }, |
