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ů.

NavbarBrand.d.ts 283B

12345678910111213
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface NavbarBrandProps {
  4. href?: string;
  5. }
  6. declare class NavbarBrand<
  7. As extends React.ElementType = 'a'
  8. > extends BsPrefixComponent<As, NavbarBrandProps> {}
  9. export default NavbarBrand;