aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/headline/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/headline/index.tsx')
-rw-r--r--src/components/ui/headline/index.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/components/ui/headline/index.tsx b/src/components/ui/headline/index.tsx
index 424190a6a..8e40fa896 100644
--- a/src/components/ui/headline/index.tsx
+++ b/src/components/ui/headline/index.tsx
@@ -11,14 +11,6 @@ import injectStyle, { WithStylesProps } from 'react-jss';
11import { Theme } from '../../../themes'; 11import { Theme } from '../../../themes';
12import { Omit } from '../typings/generic'; 12import { Omit } from '../typings/generic';
13 13
14interface IProps extends WithStylesProps<typeof styles> {
15 children: ReactNode;
16 level?: number;
17 className?: string;
18 id?: string;
19 onClick?: MouseEventHandler<HTMLButtonElement>;
20}
21
22const styles = (theme: Theme) => ({ 14const styles = (theme: Theme) => ({
23 headline: { 15 headline: {
24 fontWeight: 'lighter', 16 fontWeight: 'lighter',
@@ -45,6 +37,14 @@ const styles = (theme: Theme) => ({
45 }, 37 },
46}); 38});
47 39
40interface IProps extends WithStylesProps<typeof styles> {
41 children: ReactNode;
42 level?: number;
43 className?: string;
44 id?: string;
45 onClick?: MouseEventHandler<HTMLButtonElement>;
46}
47
48class HeadlineComponent extends Component<IProps> { 48class HeadlineComponent extends Component<IProps> {
49 render(): ReactElement { 49 render(): ReactElement {
50 const { classes, level, className, children, id, onClick } = this.props; 50 const { classes, level, className, children, id, onClick } = this.props;