Files
twenty/front/src/modules/ui/layout/top-bar/TopTitle.tsx
T
Charles Bochet d6364a9fdd Apply new theme (#449)
* Apply new theme

* Fix storybook

* Fixes

* Fix regressions
2023-06-26 19:13:04 -07:00

30 lines
709 B
TypeScript

import styled from '@emotion/styled';
import NavCollapseButton from '../navbar/NavCollapseButton';
const TitleAndCollapseContainer = styled.div`
align-items: center;
display: flex;
flex-direction: row;
`;
const TitleContainer = styled.div`
display: flex;
font-size: ${({ theme }) => theme.font.size.lg};
font-weight: ${({ theme }) => theme.font.weight.semiBold};
width: 100%;
`;
type OwnProps = {
title: string;
};
export function TopTitle({ title }: OwnProps) {
return (
<TitleAndCollapseContainer>
<NavCollapseButton hideIfOpen={true} hideOnDesktop={true} />
<TitleContainer data-testid="top-bar-title">{title}</TitleContainer>
</TitleAndCollapseContainer>
);
}