react-native-simi-comps
Version:
Simple Minimal Components for React Native
12 lines (11 loc) • 445 B
TypeScript
/// <reference types="react" />
import { PressableProps } from "react-native";
import { IconOptions } from "./Icon";
export default function ActionButton({ text, icon, onPress, type, disabled, align, }: {
text: string;
icon: IconOptions;
onPress: PressableProps["onPress"];
type?: "default" | "primary";
disabled?: boolean;
align?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | "auto";
}): JSX.Element;