UNPKG

@accelint/design-toolkit

Version:

An open-source component library to serve as part of the entire ecosystem of UX for Accelint.

12 lines (9 loc) 263 B
import { ComponentPropsWithRef } from 'react'; type DividerProps = ComponentPropsWithRef<'hr'> & { /** * The orientation of the divider. * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; }; export type { DividerProps };