Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Update imports of Spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
opr committed Oct 18, 2023
1 parent bbd8392 commit 53b2b84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/base/components/button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import { Button as WPButton } from 'wordpress-components';
import type { Button as WPButtonType } from '@wordpress/components';
import classNames from 'classnames';
import Spinner from '@woocommerce/base-components/spinner';

/**
* Internal dependencies
*/
import './style.scss';
import Spinner from '../../../../../packages/components/spinner';

export interface ButtonProps
extends Omit< WPButtonType.ButtonProps, 'variant' | 'href' > {
Expand Down
2 changes: 1 addition & 1 deletion assets/js/base/components/loading-mask/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
*/
import { __ } from '@wordpress/i18n';
import classNames from 'classnames';
import { Spinner } from '@woocommerce/blocks-components';

/**
* Internal dependencies
*/
import './style.scss';
import Spinner from '../spinner';

interface LoadingMaskProps {
children?: React.ReactNode | React.ReactNode[];
Expand Down

0 comments on commit 53b2b84

Please sign in to comment.