import React from 'react'; import { MehOutlined, SmileOutlined } from '@ant-design/icons'; import { Select } from 'antd'; const smileIcon = ; const mehIcon = ; const handleChange = (value: string) => { console.log(`selected ${value}`); }; const App: React.FC = () => ( <> ); export default App;