UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

11 lines (10 loc) 332 B
import React from "react"; import { AppTheme } from "theme"; export interface DividerProps { thickness?: keyof AppTheme["border"]; color?: keyof AppTheme["colors"]; orientation?: "horizontal" | "vertical"; fullWidth?: boolean; style?: React.CSSProperties; } export declare const Divider: React.FC<DividerProps>;