Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmockett committed Jun 13, 2024
1 parent 3534fe6 commit fa45364
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/@guardian/source/src/react-components/button/shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { css } from '@emotion/react';
import type { ReactElement, ReactNode } from 'react';
import { cloneElement } from 'react';
import { visuallyHidden } from '../../foundations';
import type { IconProps, IconSize } from '../@types/Icons';
import { Spinner } from '../spinner/Spinner';
import { IconProps, IconSize } from '../@types/Icons';
import { Size } from './@types/SharedButtonProps';
import type { Size } from './@types/SharedButtonProps';

const iconSize: Record<Size, IconSize> = {
xsmall: 'xsmall',
Expand Down

0 comments on commit fa45364

Please sign in to comment.