16 lines
271 B
TypeScript
16 lines
271 B
TypeScript
import React from 'react';
|
|
import { TbSend } from 'react-icons/tb';
|
|
|
|
|
|
function Input(){
|
|
return (
|
|
<div className="input">
|
|
<input type="text" placeholder="What do you want to say"/>
|
|
<div className="send">
|
|
<TbSend/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Input |