feat(chat-web) add chat recipient picker (#16298)

This commit is contained in:
Horatiu Muresan
2025-08-05 10:06:04 +03:00
committed by GitHub
parent f56ce78b9d
commit 79dbc2d1ee
8 changed files with 170 additions and 7 deletions

View File

@@ -18,6 +18,11 @@ interface ISelectProps {
*/
className?: string;
/**
* Class name for additional styles for container.
*/
containerClassName?: string;
/**
* Whether or not the select is disabled.
*/
@@ -143,6 +148,7 @@ const useStyles = makeStyles()(theme => {
const Select = ({
bottomLabel,
containerClassName,
className,
disabled,
error,
@@ -155,7 +161,7 @@ const Select = ({
const isMobile = isMobileBrowser();
return (
<div className = { classes.container }>
<div className = { cx(classes.container, containerClassName) }>
{label && <label
className = { cx(classes.label, isMobile && 'is-mobile') }
htmlFor = { id } >