mirror of
https://github.com/strapi/strapi.git
synced 2025-09-30 10:53:45 +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;
|