10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
function TextBox({ text }: { text: string }) {
|
|
return (
|
|
<div className='text-caption-m px-4 py-1.5 border border-[#E2E2DC] rounded-[40px] w-fit text-[#0D1922]'>
|
|
{text}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default TextBox;
|