UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

23 lines (22 loc) 776 B
/// <reference types="react" /> import { BaseComponent } from "../../commons"; declare type CardSectionProps = { enableBlur?: boolean; blurOptions?: object; body?: boolean; footer?: boolean; testId?: string; }; /** * @description: Card.Section, a sub Card component for layout-ing inside a card * @extends: BlurView * @extendsnotes: (iOS only) * @extendslink: https://github.com/react-native-community/react-native-blur/blob/master/src/BlurView.ios.js * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/CardsScreen.js */ export default class CardSection extends BaseComponent<CardSectionProps, {}> { static displayName: string; generateStyles(): void; render(): JSX.Element; } export {};