mirror of
https://github.com/strapi/strapi.git
synced 2025-10-01 11:21:01 +00:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const RequiredSign = styled.span`
|
|
color: ${({ theme }) => theme.main.colors.red};
|
|
padding-left: 2px;
|
|
`;
|
|
|
|
export default RequiredSign;
|