mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 17:00:55 +00:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
const Required = styled.span`
|
|
color: ${({ theme }) => theme.main.colors.red};
|
|
padding-left: 2px;
|
|
`;
|
|
|
|
const RequiredSign = () => <Required>*</Required>;
|
|
|
|
export default RequiredSign;
|