Label
Overview
Label is a design-system component intended for reusable, product-agnostic UI composition.
Import
import { Label, labelVariants } from "@tesseract-nexus/tesserix-ui"Exports
export { Label, labelVariants } from './label'
export type { LabelProps } from './label'Props
export interface LabelProps
extends React.LabelHTMLAttributes<HTMLLabelElement>,
VariantProps<typeof labelVariants> {}
const Label = React.forwardRef<HTMLLabelElement, LabelProps>(
({ className, variant, ...props }, ref) => {
return (
<label
className={cn(labelVariants({ variant, className }))}
ref={ref}
{...props}
/>
)
}
)
Label.displayName = "Label"
export { Label, labelVariants }Variations
const labelVariants = cva(
"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
{
variants: {
variant: {
default: "text-foreground",
muted: "text-muted-foreground",
},
},
defaultVariants: {Usage Patterns
Basic
import { Label, labelVariants } from "@tesseract-nexus/tesserix-ui"
export function Example() {
return <Label />
}Do / Don’t
Do
// Compose with domain wrappers in product code
<Label className="w-full" />Don’t
// Avoid one-off hardcoded values that bypass tokens
<Label className="bg-[#123456] text-[#fafafa] px-[13px]" />Token / Theming Mapping
- Color tokens: —primary, —secondary, —muted, —destructive, —foreground, —background
- Shape tokens: —radius
- Border/input tokens: —border, —input, —ring
- Spacing and typography: Tailwind scale via design-system preset
Interaction Test Checklist
- Interaction: click/keyboard activation for primary paths.
- Focus: visible focus styles and logical tab order.
- Variants: core variants and sizes render correctly.
- Disabled/error states: behavior and ARIA attributes are correct.
- Regression: Storybook visual check for primary states.
Accessibility
- Verify keyboard behavior for all interactive states.
- Ensure labels and semantic roles are present in consuming screens.
- Validate focus treatment and screen-reader output during QA.