2020-03-30 17:18:10 +02:00

11 lines
249 B
JavaScript

import React from 'react';
import styled from 'styled-components';
import IntlText from '../IntlText';
const ListTitle = styled(props => <IntlText fontSize="md" fontWeight="bold" {...props} />)`
margin-bottom: 3px;
`;
export default ListTitle;