import React from 'react';
interface LabelRequiredProps {
show: boolean;
theme?: string;
}
const LabelRequired = ({ show, theme }: LabelRequiredProps) => {
if (show !== true) return ;
return (
{' *'}
);
};
export default LabelRequired;
/* styles commented for reference
const Label = styled.sup`
color: ${v.colors.cta};
`;
*/