mirror of
https://github.com/strapi/strapi.git
synced 2025-10-12 08:36:40 +00:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
import styled from 'styled-components';
|
|
|
|
import CardErrorMessage from '../CardErrorMessage';
|
|
|
|
const ErrorMessage = styled(CardErrorMessage)`
|
|
margin-top: 11px;
|
|
margin-bottom: 18px;
|
|
`;
|
|
|
|
export default ErrorMessage;
|