[ui][text input] change pl to px for startAddOn

pull/427/head
Keane Chan 2 years ago
parent f8423afe2a
commit ce906c0470
No known key found for this signature in database
GPG Key ID: 32718398E1E9F87C

@ -154,14 +154,14 @@ function TextInput(
switch (startAddOnType) {
case 'label':
return (
<div className="pointer-events-none flex items-center pl-3 text-slate-500">
<div className="pointer-events-none flex items-center px-2 text-slate-500">
{startAddOn}
</div>
);
case 'icon': {
const StartAddOn = startAddOn;
return (
<div className="pointer-events-none flex items-center pl-3">
<div className="pointer-events-none flex items-center px-2">
<StartAddOn
aria-hidden="true"
className="h-5 w-5 text-slate-400"

Loading…
Cancel
Save