@nnc-digital/nnc-design-system
Version:
Design system for West & North Northamptonshire Councils, two unitary councils encompassing Wellingborough, Corby, Daventry, East Northants, Kettering, Northampton, Northamptonshire County and South Northants.
21 lines (20 loc) • 433 B
TypeScript
import React from 'react';
export interface RowProps {
/**
* Option to display the border
* Should only used for demonstrating grid
*/
hasBorder?: boolean;
/**
* Is the container an unordered list?
*/
isList?: boolean;
/**
* Option to prevent wrapping
*/
hasWrap?: boolean;
/**
* The contents of the Row (should be Column)
*/
children?: React.ReactNode;
}