@@ -26,7 +26,7 @@ const hasIsFixed = (option: unknown): option is { isFixed: boolean } =>
2626 "isFixed" in option &&
2727 typeof option . isFixed === "boolean" ;
2828
29- const MultiValue = <
29+ export const MultiValue = <
3030 Option = unknown ,
3131 IsMulti extends boolean = boolean ,
3232 Group extends GroupBase < Option > = GroupBase < Option > ,
@@ -166,7 +166,7 @@ const MultiValue = <
166166 ) ;
167167} ;
168168
169- const MultiValueContainer = <
169+ export const MultiValueContainer = <
170170 Option = unknown ,
171171 IsMulti extends boolean = boolean ,
172172 Group extends GroupBase < Option > = GroupBase < Option > ,
@@ -182,7 +182,7 @@ const MultiValueContainer = <
182182 ) ;
183183} ;
184184
185- const MultiValueLabel = <
185+ export const MultiValueLabel = <
186186 Option = unknown ,
187187 IsMulti extends boolean = boolean ,
188188 Group extends GroupBase < Option > = GroupBase < Option > ,
@@ -212,7 +212,7 @@ const TagCloseIcon = (props: IconProps) => (
212212 </ Icon >
213213) ;
214214
215- const MultiValueRemove = <
215+ export const MultiValueRemove = <
216216 Option = unknown ,
217217 IsMulti extends boolean = boolean ,
218218 Group extends GroupBase < Option > = GroupBase < Option > ,
@@ -237,6 +237,3 @@ const MultiValueRemove = <
237237 </ Box >
238238 ) ;
239239} ;
240-
241- export { MultiValueContainer , MultiValueLabel , MultiValueRemove } ;
242- export default MultiValue ;
0 commit comments