A styled input component with optional start adornment and theme-aware background.

This component wraps MUI's TextField and applies custom styles like background color, border removal, and size tweaks. It's useful for implementing search bars or minimal filter inputs in lists, tables, or toolbars.

Inherits all props from @mui/material/StandardTextFieldProps.

<SearchInput
startAdornment={<SearchIcon />}
placeholder="Search for users..."
onChange={(e) => console.log(e.target.value)}
/>