2021-08-20 17:06:26 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { Text } from '@chakra-ui/react';
|
2021-09-05 18:25:49 +02:00
|
|
|
import styled from 'styled-components';
|
2021-08-20 17:06:26 +02:00
|
|
|
|
|
|
|
type EnrichedTextType = {
|
|
|
|
children: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
2021-09-05 18:25:49 +02:00
|
|
|
export const P = styled.p`
|
|
|
|
line-height: 27px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: black;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
`;
|