From 812600a3eca74cf73b59bf8f74c68346af4d081e Mon Sep 17 00:00:00 2001 From: Zagrios <40181755+Zagrios@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:23:21 +0100 Subject: [PATCH] Fix brazil flag icon --- .../svgs/flags/brasil-icon.component.tsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/renderer/components/svgs/flags/brasil-icon.component.tsx b/src/renderer/components/svgs/flags/brasil-icon.component.tsx index b6027db8..5537fbcf 100644 --- a/src/renderer/components/svgs/flags/brasil-icon.component.tsx +++ b/src/renderer/components/svgs/flags/brasil-icon.component.tsx @@ -1,11 +1,14 @@ -import { CSSProperties } from "react"; +import { createSvgIcon } from "../svg-icon.type"; -export function BrazilIcon(props: { className?: string; style?: CSSProperties }) { +export const BrazilIcon = createSvgIcon((props, ref) => { return ( - - - - + + + + + + + ); -}; +});