UNPKG

@theme-ui/components

Version:

Primitive layout, typographic, and other components for use with Theme UI.

8 lines (7 loc) 288 B
import { BoxProps } from './Box'; import type { ForwardRef } from './types'; export declare type DividerProps = BoxProps; /** * The Divider component reuses styles from `theme.styles.hr` as its default variant. */ export declare const Divider: ForwardRef<HTMLDivElement, DividerProps>;