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/separator.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 SeparatorPrimitive from "@radix-ui/react-separator"1920import { cn } from "@/lib/utils"2122const Separator = React.forwardRef<23 React.ElementRef<typeof SeparatorPrimitive.Root>,24 React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root>25>(26 (27 { className, orientation = "horizontal", decorative = true, ...props },28 ref29 ) => (30 <SeparatorPrimitive.Root31 ref={ref}32 decorative={decorative}33 orientation={orientation}34 className={cn(35 "shrink-0 bg-border",36 orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",37 className38 )}39 {...props}40 />41 )42)43Separator.displayName = SeparatorPrimitive.Root.displayName4445export { Separator }46