mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-09 09:53:44 +02:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import tw, { styled } from 'twin.macro';
|
|
|
|
const Label = styled.label<{ isLight?: boolean }>`
|
|
${tw`block text-xs uppercase text-neutral-200 mb-1 sm:mb-2`};
|
|
${props => props.isLight && tw`text-neutral-700`};
|
|
`;
|
|
|
|
export default Label;
|