UNPKG

@uva-glass/component-library

Version:

React components UvA

10 lines (9 loc) 484 B
import { PropsWithChildren } from 'react'; export interface RepeaterProps { /** The direction of the items. */ flexDirection?: 'row' | 'row-reverse' | 'column' | 'column-reverse'; /** The gap between the items. */ gap?: '025' | '050' | '075' | '100' | '150' | '200'; } /** Represents a component to show a list of items. */ export declare const Repeater: ({ children, flexDirection, gap }: PropsWithChildren<RepeaterProps>) => import("react/jsx-runtime").JSX.Element;