Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Dec 5, 2024
1 parent eac6670 commit 6d39667
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/widgets/custom/Spinner.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import React from "react";
import { WidgetProps } from "@/types";
import { Spinner as SpinnerOoui } from "@gisce/ooui";
import { Spin } from "antd";
import Container from "@/widgets/containers/Container";

type SpinnerProps = WidgetProps & {
type SpinnerProps = Omit<WidgetProps, "ooui"> & {
ooui: SpinnerOoui;
responsiveBehaviour?: boolean;
tip?: string;
Expand Down

0 comments on commit 6d39667

Please sign in to comment.