Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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;