UNPKG

@theme-ui/components

Version:

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

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