diff --git a/src/components/Select/components/SelectList/OptionWrap.tsx b/src/components/Select/components/SelectList/OptionWrap.tsx
index 054aa99f8..83654556a 100644
--- a/src/components/Select/components/SelectList/OptionWrap.tsx
+++ b/src/components/Select/components/SelectList/OptionWrap.tsx
@@ -20,8 +20,12 @@ type OptionWrapProps = {
};
const DefaultOption = ({option}: DefaultOptionProps) => {
- const {content, children, disabled} = option;
- return {content || children};
+ const {content, children, disabled, title} = option;
+ return (
+
+ {content || children}
+
+ );
};
export const OptionWrap = (props: OptionWrapProps) => {