rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
16 lines (15 loc) • 571 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { ActionSheet, ValidTheme } from '../../types/actionSheetTypes';
type Props = {
action: ActionSheet;
backgroundColor: string;
marginTop?: number;
radius?: 'all' | 'top' | 'bottom' | 'none';
showIconOnIos?: boolean;
style?: StyleProp<ViewStyle>;
textColor?: string;
theme: ValidTheme;
};
export declare const ActionButton: ({ action, backgroundColor, marginTop, radius, showIconOnIos, style, textColor, theme, }: Props) => React.JSX.Element;
export {};