UNPKG

@saleor/macaw-ui

Version:

Saleor's UI component library

12 lines (10 loc) 331 B
import { DataAttributes } from '../types'; import { PropsWithBox } from '../Box'; import { ReactNode } from 'react'; export type ListDividerProps = PropsWithBox<DataAttributes & { children?: ReactNode; }>; export declare const Divider: { ({ children, ...rest }: ListDividerProps): JSX.Element; displayName: string; };