From bac9408912e1166429b8ab57edb94923d805dbc4 Mon Sep 17 00:00:00 2001 From: Sean McIntyre Date: Wed, 17 Nov 2021 14:03:19 -0500 Subject: [PATCH] use Meta types --- src/typography/Meta/Meta.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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