mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 03:34:53 +00:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
import styled from 'styled-components';
|
|
import IntlText from '../IntlText';
|
|
|
|
const EmptyText = styled(IntlText)`
|
|
position: absolute;
|
|
width: 17rem;
|
|
margin-top: -0.3rem;
|
|
line-height: 1.8rem;
|
|
text-align: center;
|
|
color: ${({ theme }) => theme.main.colors.white};
|
|
`;
|
|
|
|
export default EmptyText;
|