Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/scripts/components/elements/Label.tsx
7461 views
1
import styled from 'styled-components/macro';
2
import tw from 'twin.macro';
3
4
const Label = styled.label<{ isLight?: boolean }>`
5
${tw`block text-xs uppercase text-neutral-200 mb-1 sm:mb-2`};
6
${(props) => props.isLight && tw`text-neutral-700`};
7
`;
8
9
export default Label;
10
11