diff --git a/src/typography/Meta/Meta.story.tsx b/src/typography/Meta/Meta.story.tsx index 31243407e..912b92799 100644 --- a/src/typography/Meta/Meta.story.tsx +++ b/src/typography/Meta/Meta.story.tsx @@ -2,9 +2,7 @@ import React from 'react'; import { Story } from '@storybook/react'; import { Meta } from './Meta'; -// import { Props } from './Meta.types'; - -type Props = any; +import { Props } from './Meta.types'; export default { title: 'typography/Meta', diff --git a/src/typography/Meta/Meta.tsx b/src/typography/Meta/Meta.tsx index b386935ba..5f936444b 100644 --- a/src/typography/Meta/Meta.tsx +++ b/src/typography/Meta/Meta.tsx @@ -1,12 +1,10 @@ import React from 'react'; -// import { Props } from './Meta.types'; +import { Props } from './Meta.types'; import { Meta as Styled } from './Meta.style'; import { withIris } from '../../utils'; -type Props = any; - export const Meta = withIris< HTMLParagraphElement | HTMLSpanElement | HTMLLabelElement, Props