7 lines
327 B
TypeScript
7 lines
327 B
TypeScript
import * as React from 'react';
|
|
import type { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface OffcanvasBodyProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
|
}
|
|
declare const OffcanvasBody: BsPrefixRefForwardingComponent<'div', OffcanvasBodyProps>;
|
|
export default OffcanvasBody;
|