import React from 'react';
import styled from 'styled-components';
import { SessionIconButton } from '../../icon';
const StyledChatButtonContainer = styled.div`
.session-icon-button {
svg {
background-color: var(--chat-buttons-background-color);
}
&:hover svg {
background-color: var(--chat-buttons-background-hover-color);
}
}
`;
export const AddStagedAttachmentButton = (props: { onClick: () => void }) => {
return (
);
};
export const StartRecordingButton = (props: { onClick: () => void }) => {
return (
);
};
export const ToggleEmojiButton = React.forwardRef void }>(
(props, ref) => {
return (
);
}
);
export const SendMessageButton = (props: { onClick: () => void }) => {
return (
);
};