@viktorvojtek/react-native-simple-components
Version:
Collection of essential UI components based on react-native components
12 lines (11 loc) • 612 B
TypeScript
import React from 'react';
import type { PressableProps } from '../Pressable';
type Props = PressableProps;
export type ButtonProps = Props;
declare const _default: React.MemoExoticComponent<(props: {
children?: React.ReactNode;
style?: import("react-native/types").StyleProp<import("react-native/types").ViewStyle>;
} & {
bgColor?: import("react-native/types").ColorValue | undefined;
} & import("../../..").MarginProps & import("../../..").PaddingProps & import("react-native/types").ViewStyle & Omit<import("react-native/types").PressableProps, "style">) => JSX.Element>;
export default _default;