aboutsummaryrefslogtreecommitdiffstats
path: root/packages/ui/src/badge/index.tsx
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-07 08:03:45 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-07 08:03:45 +0200
commit31f8ada876b3aec45ffffcf82079eaacb69349fc (patch)
tree9f5752b7bbc42c9b5b3c2b02517732b3a2e5b868 /packages/ui/src/badge/index.tsx
parentchore: simplify babel configuration (#2029) (diff)
downloadferdium-app-31f8ada876b3aec45ffffcf82079eaacb69349fc.tar.gz
ferdium-app-31f8ada876b3aec45ffffcf82079eaacb69349fc.tar.zst
ferdium-app-31f8ada876b3aec45ffffcf82079eaacb69349fc.zip
chore: upgrade react to latest (#2030)
Diffstat (limited to 'packages/ui/src/badge/index.tsx')
-rw-r--r--packages/ui/src/badge/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/ui/src/badge/index.tsx b/packages/ui/src/badge/index.tsx
index 5dd735879..a8f3ebcbf 100644
--- a/packages/ui/src/badge/index.tsx
+++ b/packages/ui/src/badge/index.tsx
@@ -1,5 +1,5 @@
1import classnames from 'classnames'; 1import classnames from 'classnames';
2import React, { Component } from 'react'; 2import { Component, ReactNode } from 'react';
3import injectStyle from 'react-jss'; 3import injectStyle from 'react-jss';
4 4
5import { Theme } from '../../../theme'; 5import { Theme } from '../../../theme';
@@ -8,7 +8,7 @@ import { IWithStyle } from '../typings/generic';
8interface IProps extends IWithStyle { 8interface IProps extends IWithStyle {
9 type: string; 9 type: string;
10 className?: string; 10 className?: string;
11 children: React.ReactNode; 11 children: ReactNode;
12} 12}
13 13
14const badgeStyles = (theme: Theme) => { 14const badgeStyles = (theme: Theme) => {