diff --git a/packages/twenty-front/src/modules/activities/emails/components/ThreadBottomBar.tsx b/packages/twenty-front/src/modules/activities/emails/components/ThreadBottomBar.tsx new file mode 100644 index 000000000..017483281 --- /dev/null +++ b/packages/twenty-front/src/modules/activities/emails/components/ThreadBottomBar.tsx @@ -0,0 +1,38 @@ +import styled from '@emotion/styled'; + +import { IconArrowBackUp, IconUserCircle } from '@/ui/display/icon'; +import { Button } from '@/ui/input/button/components/Button'; + +const StyledThreadBottomBar = styled.div` + align-items: center; + display: flex; + gap: ${({ theme }) => theme.spacing(2)}; + padding-left: ${({ theme }) => theme.spacing(6)}; + padding-right: ${({ theme }) => theme.spacing(6)}; + padding-top: ${({ theme }) => theme.spacing(4)}; +`; + +export const ThreadBottomBar = () => { + return ( + +