* feat: redirect to Plan Required page if subscription status is not active Closes #2934 * feat: navigate to Plan Required in PageChangeEffect * feat: add Twenty logo to Plan Required modal * test: add Storybook story * Fix lint --------- Co-authored-by: Charles Bochet <charles@twenty.com>
9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const StyledSubTitle = styled.div`
|
|
color: ${({ theme }) => theme.font.color.secondary};
|
|
text-align: center;
|
|
`;
|
|
|
|
export { StyledSubTitle as SubTitle };
|