diff --git a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts index 67c2e857f10d32..d9c5a260aaf9f3 100644 --- a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts +++ b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts @@ -1,6 +1,5 @@ -import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; - import { NavCategoryItemContextValue } from '../NavCategoryItemContext'; +import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; export type NavCategoryItemContextValues = { navCategoryItem: NavCategoryItemContextValue; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts index a43405065e4ae8..f0d75d4b5daec7 100644 --- a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts +++ b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts @@ -1,8 +1,6 @@ import { makeStyles, mergeClasses } from '@griffel/react'; import { SlotClassNames } from '@fluentui/react-utilities'; import { typographyStyles } from '@fluentui/react-theme'; - -import type { NavCategoryItemSlots, NavCategoryItemState } from './NavCategoryItem.types'; import { useContentStyles, useIconStyles, @@ -10,6 +8,8 @@ import { useRootDefaultClassName, } from '../sharedNavStyles.styles'; +import type { NavCategoryItemSlots, NavCategoryItemState } from './NavCategoryItem.types'; + export const navCategoryItemClassNames: SlotClassNames = { root: 'fui-NavCategoryItem', icon: 'fui-NavCategoryItem__icon', diff --git a/packages/react-components/react-nav-preview/src/components/NavItem/useNavItemStyles.styles.ts b/packages/react-components/react-nav-preview/src/components/NavItem/useNavItemStyles.styles.ts index 637f566926c816..1ae3577c8e8ce0 100644 --- a/packages/react-components/react-nav-preview/src/components/NavItem/useNavItemStyles.styles.ts +++ b/packages/react-components/react-nav-preview/src/components/NavItem/useNavItemStyles.styles.ts @@ -1,6 +1,4 @@ import { mergeClasses } from '@griffel/react'; -import type { SlotClassNames } from '@fluentui/react-utilities'; -import type { NavItemSlots, NavItemState } from './NavItem.types'; import { useContentStyles, useIconStyles, @@ -8,6 +6,8 @@ import { useRootDefaultClassName, } from '../sharedNavStyles.styles'; +import type { SlotClassNames } from '@fluentui/react-utilities'; +import type { NavItemSlots, NavItemState } from './NavItem.types'; export const navItemClassNames: SlotClassNames = { root: 'fui-NavItem', icon: 'fui-NavItem__icon', diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts b/packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts index 660548901ed9bb..5ec39df4aea0b3 100644 --- a/packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts +++ b/packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts @@ -1,7 +1,4 @@ import { makeStyles, mergeClasses } from '@griffel/react'; - -import type { SlotClassNames } from '@fluentui/react-utilities'; -import type { NavSubItemSlots, NavSubItemState } from './NavSubItem.types'; import { navItemTokens, useContentStyles, @@ -9,6 +6,9 @@ import { useRootDefaultClassName, } from '../sharedNavStyles.styles'; +import type { SlotClassNames } from '@fluentui/react-utilities'; +import type { NavSubItemSlots, NavSubItemState } from './NavSubItem.types'; + export const navSubItemClassNames: SlotClassNames = { root: 'fui-NavSubItem', };