@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
14 lines • 494 B
TypeScript
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