File size: 440 Bytes
0bfe2e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const FakeSelect: React.FC<
  Readonly<{
    innerText: string;
  }>
> = ({ innerText }) => {
  return (
    <div
      style={{
        height: '42px',
        margin: '0',
        backgroundColor: 'white',
        borderRadius: 'var(--borderRadius)',
        display: 'flex',
        alignItems: 'center',
      }}
    >
      <p style={{ margin: '10px', color: '#808090' }}>{innerText}</p>
    </div>
  );
};

export default FakeSelect;