spb/vquant Public MIT
VibeQuant — AI-powered institutional-grade financial intelligence platform.
TypeScript 84.3%
Python 11.7%
JavaScript 1.6%
CSS 1.5%
HTML 0.7%
1/*2 * =============================================================================3 * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 * File: client/src/components/ui/label.tsx6 *7 * Author: Simon-Pierre Boucher8 * Contact: contact@spboucher.ai9 * Website: https://www.spboucher.ai10 * Demo: https://www.vquant.ai11 * License: MIT (see LICENSE)12 *13 * Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617import * as React from "react"18import * as LabelPrimitive from "@radix-ui/react-label"19import { cva, type VariantProps } from "class-variance-authority"2021import { cn } from "@/lib/utils"2223const labelVariants = cva(24 "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"25)2627const Label = React.forwardRef<28 React.ElementRef<typeof LabelPrimitive.Root>,29 React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &30 VariantProps<typeof labelVariants>31>(({ className, ...props }, ref) => (32 <LabelPrimitive.Root33 ref={ref}34 className={cn(labelVariants(), className)}35 {...props}36 />37))38Label.displayName = LabelPrimitive.Root.displayName3940export { Label }41