Skip to content

Commit

Permalink
fix(button): update imports to use the default export instead of named (
Browse files Browse the repository at this point in the history
  • Loading branch information
tay1orjones committed Jul 25, 2023
1 parent 0770e51 commit 9f26e64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/ComboButton/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import classNames from 'classnames';

import { ChevronDown } from '@carbon/icons-react';
import { IconButton } from '../IconButton';
import { Button } from '../Button';
import Button from '../Button';
import { Menu } from '../Menu';

import { useAttachedMenu } from '../../internal/useAttachedMenu';
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/components/MenuButton/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import PropTypes from 'prop-types';
import classNames from 'classnames';

import { ChevronDown } from '@carbon/icons-react';
import { Button } from '../Button';
import Button from '../Button';
import { Menu } from '../Menu';

import { useAttachedMenu } from '../../internal/useAttachedMenu';
Expand Down

0 comments on commit 9f26e64

Please sign in to comment.