From e0e25569b61b8f8f3c4eb2cfdfae89be7a7e86d2 Mon Sep 17 00:00:00 2001 From: Jeremy Davis Date: Fri, 5 Jan 2024 10:54:29 +0100 Subject: SONAR-21396 Migrate session pages to the new UI --- .../design-system/src/components/buttons/ThirdPartyButton.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'server/sonar-web/design-system/src/components') diff --git a/server/sonar-web/design-system/src/components/buttons/ThirdPartyButton.tsx b/server/sonar-web/design-system/src/components/buttons/ThirdPartyButton.tsx index 50c83b8ff82..4f85fb6f50e 100644 --- a/server/sonar-web/design-system/src/components/buttons/ThirdPartyButton.tsx +++ b/server/sonar-web/design-system/src/components/buttons/ThirdPartyButton.tsx @@ -28,11 +28,16 @@ interface ThirdPartyProps extends Omit { name: string; } -export function ThirdPartyButton({ children, iconPath, name, ...buttonProps }: ThirdPartyProps) { +export function ThirdPartyButton({ + children, + iconPath, + name, + ...buttonProps +}: Readonly) { const size = 16; return ( - {name} + {name} {children} ); -- cgit v1.2.3