From fb27973d52da019e97ea5e7698380126ce6e71d0 Mon Sep 17 00:00:00 2001 From: Rowell Heria Date: Thu, 12 Sep 2024 16:47:22 +0100 Subject: [PATCH] revert(nhsuk-frontend-react): revert change that added style prop --- .../src/components/content-presentation/tag/Tag.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/nhsuk-frontend-react/src/components/content-presentation/tag/Tag.tsx b/packages/nhsuk-frontend-react/src/components/content-presentation/tag/Tag.tsx index a6e8e1d..191c620 100644 --- a/packages/nhsuk-frontend-react/src/components/content-presentation/tag/Tag.tsx +++ b/packages/nhsuk-frontend-react/src/components/content-presentation/tag/Tag.tsx @@ -16,7 +16,6 @@ export type TagColour = export type TagProps = { variant?: TagColour; - style?: React.CSSProperties; } & ElementProps<'strong'>; const Tag = ({ variant = 'grey', className, ...props }: TagProps) => {