From 53faf55df1484204e276cd21a32703c2d7809332 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Tue, 21 Feb 2023 22:36:35 -0500 Subject: [PATCH] fix(Field): remove style --- src/deck-components/Field.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/deck-components/Field.tsx b/src/deck-components/Field.tsx index b2aedef..efe4703 100644 --- a/src/deck-components/Field.tsx +++ b/src/deck-components/Field.tsx @@ -1,10 +1,9 @@ -import { CSSProperties, FC, ReactNode, RefAttributes } from 'react'; +import { FC, ReactNode, RefAttributes } from 'react'; import { findModuleChild } from '../webpack'; import { FooterLegendProps } from './FooterLegend'; export interface FieldProps extends FooterLegendProps { - style?: CSSProperties, label?: ReactNode; bottomSeparator?: 'standard' | 'thick' | 'none'; description?: ReactNode;