UNPKG

@freecodecamp/ui

Version:

The freeCodeCamp.org open-source UI components

8 lines (7 loc) 219 B
type Orientation = "vertical" | "horizontal"; export interface RowProps extends React.HTMLAttributes<HTMLDivElement> { className?: string; children?: React.ReactNode; orientation?: Orientation; } export {};