react-bootstrap
Version:
Bootstrap 5 components built with React
6 lines (5 loc) • 312 B
TypeScript
import * as React from 'react';
import { OffcanvasProps } from './Offcanvas';
export type NavbarOffcanvasProps = Omit<OffcanvasProps, 'show'>;
declare const NavbarOffcanvas: React.ForwardRefExoticComponent<Omit<NavbarOffcanvasProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export default NavbarOffcanvas;