UNPKG

rn-inkpad

Version:

<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />

11 lines (10 loc) 346 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { ButtonType, ValidColor } from '../../types/commonTypes'; type Props = { button: ButtonType; color?: ValidColor; style?: StyleProp<ViewStyle>; }; export declare const CardButton: ({ button, color, style }: Props) => React.JSX.Element; export {};