UNPKG

@jk-core/components

Version:
9 lines (8 loc) 339 B
interface DividerProps { children?: React.ReactNode; textAlign?: 'left' | 'center' | 'right'; variant?: 'full' | 'middle' | 'short'; orientation?: 'horizontal' | 'vertical'; } export default function Divider({ children, textAlign, variant, orientation, }: DividerProps): import("react/jsx-runtime").JSX.Element; export {};