UNPKG

rn-inkpad

Version:

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

16 lines (15 loc) 458 B
import React from 'react'; import { IconName } from '../../types'; type Props = { icon: IconName; align?: 'left' | 'right'; backgroundColor?: string; iconColor?: string; iconSize?: number; size?: number; margin?: number; text?: string; onPress?: () => void; }; export declare const ActionButton: ({ align, backgroundColor, icon, iconColor, iconSize, onPress, margin, size, text, }: Props) => React.JSX.Element; export {};