Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Row.d.ts 259B

12345678910111213
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface RowProps {
  4. noGutters?: boolean;
  5. }
  6. declare class Row<
  7. As extends React.ElementType = 'div'
  8. > extends BsPrefixComponent<As, RowProps> {}
  9. export default Row;