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 ( - - - - + + + + + + + ); -}; +});