diff --git a/packages/circuit-ui/components/LoadingButton/LoadingButton.tsx b/packages/circuit-ui/components/LoadingButton/LoadingButton.tsx index 961180afd9..37f3248943 100644 --- a/packages/circuit-ui/components/LoadingButton/LoadingButton.tsx +++ b/packages/circuit-ui/components/LoadingButton/LoadingButton.tsx @@ -13,11 +13,11 @@ * limitations under the License. */ -import LoadingButton, { ButtonProps } from '../Button'; +import Button, { ButtonProps } from '../Button'; export type LoadingButtonProps = ButtonProps; /** * @deprecated Use the Button component with the `isLoading` and `loadingLabel` props instead. */ -export { LoadingButton }; +export const LoadingButton = Button;