Update dependencies (again) (#3442)

* Update dependencies
* Upgrade rollup
* Remove all index.ts reexport files
This commit is contained in:
DingDongSoLong4
2023-02-17 00:42:44 +02:00
committed by GitHub
parent a1851b3713
commit bd747317d4
202 changed files with 1297 additions and 1406 deletions

View File

@@ -1,6 +1,6 @@
import React from "react";
import { Button, Modal, Spinner, ModalProps } from "react-bootstrap";
import Icon from "src/components/Shared/Icon";
import { Icon } from "./Icon";
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
import { FormattedMessage } from "react-intl";
@@ -27,7 +27,7 @@ interface IModal {
const defaultOnHide = () => {};
const ModalComponent: React.FC<IModal> = ({
export const ModalComponent: React.FC<IModal> = ({
children,
show,
icon,
@@ -99,5 +99,3 @@ const ModalComponent: React.FC<IModal> = ({
</Modal.Footer>
</Modal>
);
export default ModalComponent;