UNPKG

@youwen/ai-design-system

Version:

Enterprise AI-driven design system with comprehensive design tokens

17 lines (16 loc) 1.21 kB
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const widgetModuleDividerVariants: (props?: ({ size?: "auto" | "standard" | null | undefined; padding?: "base" | "none" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface WidgetModuleDividerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof widgetModuleDividerVariants> { topContent?: React.ReactNode; bottomContent?: React.ReactNode; dividerType?: "horizontal" | "vertical" | "dashed"; layout?: "leftTop" | "rightTop" | "leftBottom" | "rightBottom" | "leftTop,rightTop" | "leftTop,leftBottom" | "leftTop,rightBottom" | "rightTop,leftBottom" | "rightTop,rightBottom" | "leftBottom,rightBottom" | "leftTop,rightTop,leftBottom" | "leftTop,rightTop,rightBottom" | "leftTop,leftBottom,rightBottom" | "rightTop,leftBottom,rightBottom" | "all"; size?: "standard" | "auto"; padding?: "none" | "base"; } declare const WidgetModuleDivider: React.ForwardRefExoticComponent<WidgetModuleDividerProps & React.RefAttributes<HTMLDivElement>>; export { WidgetModuleDivider, widgetModuleDividerVariants };