diff --git a/src/components/SelectCountry/index.tsx b/src/components/SelectCountry/index.tsx index fc7c335..83ea522 100644 --- a/src/components/SelectCountry/index.tsx +++ b/src/components/SelectCountry/index.tsx @@ -22,6 +22,7 @@ const SelectCountryComponent: ( imageField, selectedTextStyle, imageStyle, + selectedImageStyle, } = props; const ref: any = useRef(null); @@ -63,7 +64,7 @@ const SelectCountryComponent: ( return ( ); } else { diff --git a/src/components/SelectCountry/model.ts b/src/components/SelectCountry/model.ts index a48fd2e..93c8e32 100644 --- a/src/components/SelectCountry/model.ts +++ b/src/components/SelectCountry/model.ts @@ -4,4 +4,5 @@ import type { DropdownProps } from '../Dropdown/model'; export interface SelectCountryProps extends DropdownProps { imageField: string; imageStyle?: ImageStyle; + selectedImageStyle?: ImageStyle }