Skip to content

Commit

Permalink
re-ording imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mltejera committed Apr 16, 2024
1 parent ce4d2e7 commit 5648091
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
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,
useIndicatorStyles,
useRootDefaultClassName,
} from '../sharedNavStyles.styles';

import type { NavCategoryItemSlots, NavCategoryItemState } from './NavCategoryItem.types';

export const navCategoryItemClassNames: SlotClassNames<NavCategoryItemSlots> = {
root: 'fui-NavCategoryItem',
icon: 'fui-NavCategoryItem__icon',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { mergeClasses } from '@griffel/react';
import type { SlotClassNames } from '@fluentui/react-utilities';
import type { NavItemSlots, NavItemState } from './NavItem.types';
import {
useContentStyles,
useIconStyles,
useIndicatorStyles,
useRootDefaultClassName,
} from '../sharedNavStyles.styles';

import type { SlotClassNames } from '@fluentui/react-utilities';
import type { NavItemSlots, NavItemState } from './NavItem.types';
export const navItemClassNames: SlotClassNames<NavItemSlots> = {
root: 'fui-NavItem',
icon: 'fui-NavItem__icon',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { makeStyles, mergeClasses } from '@griffel/react';

import type { SlotClassNames } from '@fluentui/react-utilities';
import type { NavSubItemSlots, NavSubItemState } from './NavSubItem.types';
import {
navItemTokens,
useContentStyles,
useIndicatorStyles,
useRootDefaultClassName,
} from '../sharedNavStyles.styles';

import type { SlotClassNames } from '@fluentui/react-utilities';
import type { NavSubItemSlots, NavSubItemState } from './NavSubItem.types';

export const navSubItemClassNames: SlotClassNames<NavSubItemSlots> = {
root: 'fui-NavSubItem',
};
Expand Down

0 comments on commit 5648091

Please sign in to comment.