UNPKG

vcc-ui

Version:

A React library for building user interfaces at Volvo Cars

14 lines (13 loc) 286 B
import React from 'react'; export type RowProps = { /** * @default 'start' */ align?: 'start' | 'end' | 'center'; children?: React.ReactNode; }; /** * Groups a number of columns and can align them. * @deprecated */ export declare const Row: React.FC<RowProps>;