WIP: Add table to TaskGroupsTable

This commit is contained in:
Ken Hibino
2022-03-25 16:11:20 -07:00
parent 55de4e84eb
commit e4b7765277
2 changed files with 331 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ const useStyles = makeStyles((theme) => ({
borderRadius: "10px",
marginRight: "2px",
},
inputRoot: {
borderRadius: 20,
paddingLeft: "12px !important",
},
}));
interface Props {
@@ -67,6 +71,10 @@ export default function GroupSelect(props: Props) {
renderInput={(params) => (
<TextField {...params} label="Select group" variant="outlined" />
)}
classes={{
inputRoot: classes.inputRoot,
}}
size="small"
/>
);
}