aboutsummaryrefslogtreecommitdiffstats
path: root/packages/ui/src/infobox/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/ui/src/infobox/index.tsx')
-rw-r--r--packages/ui/src/infobox/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/ui/src/infobox/index.tsx b/packages/ui/src/infobox/index.tsx
index 88cfdb620..7bad4a1f2 100644
--- a/packages/ui/src/infobox/index.tsx
+++ b/packages/ui/src/infobox/index.tsx
@@ -1,6 +1,6 @@
1import { mdiClose } from '@mdi/js'; 1import { mdiClose } from '@mdi/js';
2import classnames from 'classnames'; 2import classnames from 'classnames';
3import React, { Component } from 'react'; 3import { Component, ReactNode } from 'react';
4import injectStyle from 'react-jss'; 4import injectStyle from 'react-jss';
5 5
6import { Icon } from '..'; 6import { Icon } from '..';
@@ -16,7 +16,7 @@ interface IProps extends IWithStyle {
16 ctaOnClick?: () => void; 16 ctaOnClick?: () => void;
17 ctaLabel?: string; 17 ctaLabel?: string;
18 ctaLoading?: boolean; 18 ctaLoading?: boolean;
19 children: React.ReactNode; 19 children: ReactNode;
20 className: string; 20 className: string;
21} 21}
22 22