mirror of
https://github.com/strapi/strapi.git
synced 2025-10-13 09:03:25 +00:00
11 lines
249 B
JavaScript
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;
|