mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import type React from 'react';
|
|
import type { FC } from 'react';
|
|
import { Box, styled, TextField } from '@mui/material';
|
|
import { StyledAvatar } from './StyledAvatar';
|
|
import type { IUser } from 'interfaces/user';
|
|
|
|
const AddCommentWrapper = styled(Box)(({ theme }) => ({
|
|
display: 'flex',
|
|
marginTop: theme.spacing(2),
|
|
marginBottom: theme.spacing(1),
|
|
}));
|
|
|
|
export const AddCommentField: FC<{
|
|
user: IUser | undefined;
|
|
commentText: string;
|
|
onTypeComment: (text: string) => void;
|
|
children?: React.ReactNode;
|
|
}> = ({ user, commentText, onTypeComment, children }) => (
|
|
<>
|
|
<AddCommentWrapper>
|
|
<StyledAvatar user={user} />
|
|
<TextField
|
|
variant='outlined'
|
|
placeholder='Add your comment here'
|
|
fullWidth
|
|
multiline
|
|
minRows={2}
|
|
onChange={(e) => onTypeComment(e.target.value)}
|
|
value={commentText}
|
|
/>
|
|
</AddCommentWrapper>
|
|
<Box sx={{ display: 'flex', justifyContent: 'flex-end' }}>
|
|
{children}
|
|
</Box>
|
|
</>
|
|
);
|