UNPKG

@uva-glass/component-library

Version:

React components UvA

10 lines (9 loc) 421 B
import { ReactNode } from 'react'; export interface HorizontalListProps { /** The items to display. */ values: ReactNode[]; /** The separator to use. */ separator?: ReactNode; } /** Represents a component to show text separated by a given separator in a horizontal direction. */ export declare const HorizontalList: ({ values, separator }: HorizontalListProps) => import("react/jsx-runtime").JSX.Element;