2022-11-25 13:25:03 -07:00
|
|
|
import styled from 'styled-components';
|
2020-07-04 12:39:55 -07:00
|
|
|
import tw from 'twin.macro';
|
|
|
|
|
|
|
|
const Label = styled.label<{ isLight?: boolean }>`
|
2020-09-13 10:49:57 -07:00
|
|
|
${tw`block text-xs uppercase text-neutral-200 mb-1 sm:mb-2`};
|
2022-11-25 13:25:03 -07:00
|
|
|
${props => props.isLight && tw`text-neutral-700`};
|
2020-07-04 12:39:55 -07:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default Label;
|