You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
627 B
16 lines
627 B
import * as React from 'react';
|
|
import Transition from 'react-transition-group/Transition';
|
|
import { TransitionCallbacks } from '@restart/ui/types';
|
|
import { BsPrefixOnlyProps } from './helpers';
|
|
export interface OffcanvasTogglingProps extends TransitionCallbacks, BsPrefixOnlyProps {
|
|
className?: string;
|
|
in?: boolean;
|
|
mountOnEnter?: boolean;
|
|
unmountOnExit?: boolean;
|
|
appear?: boolean;
|
|
timeout?: number;
|
|
children: React.ReactElement;
|
|
}
|
|
declare const OffcanvasToggling: React.ForwardRefExoticComponent<OffcanvasTogglingProps & React.RefAttributes<Transition<any>>>;
|
|
export default OffcanvasToggling;
|