UNPKG

@kietpt2003/react-native-core-ui

Version:
14 lines 494 B
import React from 'react'; import { View, StyleProp, ViewStyle } from 'react-native'; export interface CardActionsProps { children?: React.ReactNode; /** * If `true`, the actions do not have additional margin. * @default false */ disableSpacing?: boolean; style?: StyleProp<ViewStyle>; } declare const CardActions: React.ForwardRefExoticComponent<CardActionsProps & React.RefAttributes<View>>; export default CardActions; //# sourceMappingURL=CardActions.d.ts.map