HichamELBSI 210bb4985a Fix PR review
Signed-off-by: HichamELBSI <elabbassih@gmail.com>
2020-03-30 18:49:49 +02:00

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;