Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / organisms / ExpandableCard / renderProps.d.ts
Size: Mime:
import { CardProps } from './typings';
import { ExpandableState as CardState } from './ExpandableCardState';
/**
 * @description only renders toggle button
 */
declare function renderToggleButton(props: CardProps, state: CardState): JSX.Element;
/**
 * @description the first view of the Expandable card
 */
declare function renderDefaultView(props: CardProps, state: CardState): JSX.Element;
/**
 * @description the Expandable view of the card
 */
declare function renderExpandedView(props: CardProps, state: CardState): JSX.Element;
/**
 * @description only renders wrappers
 */
declare function renderWrap(props: CardProps, state: CardState): JSX.Element;
export { renderWrap, renderToggleButton, renderDefaultView, renderExpandedView };