@amaui/ui-react
Version:
UI for React
13 lines (12 loc) • 375 B
TypeScript
import React from 'react';
import { ITransition } from '..';
import { IPropsAny } from '../types';
export interface IExpand extends Omit<ITransition, 'className'> {
value?: number;
expandSize?: number;
orientation?: 'veritcal' | 'horizontal';
WrapperProps?: IPropsAny;
className?: string;
}
declare const Expand: React.FC<IExpand>;
export default Expand;