Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
presets
/
AnimatedExpandableCard
/
renderProps.d.ts
|
|---|
/// <reference types="react" />
import { AnimatedCardProps, AnimatedCardState } from './typings';
/**
* header view
*/
declare function defaultRenderHeaderView(props: AnimatedCardProps, state: AnimatedCardState): JSX.Element;
/**
* expandable view
*/
declare function defaultRenderExpandableView(props: AnimatedCardProps, state: AnimatedCardState): JSX.Element;
/**
* footer view
*/
declare function defaultRenderFooterView(props: AnimatedCardProps, state: AnimatedCardState): JSX.Element;
/**
* Empty Toggle Button
*/
declare function defaultRenderToggleButton(): JSX.Element;
export { defaultRenderToggleButton, defaultRenderHeaderView, defaultRenderExpandableView, defaultRenderFooterView, };