import React from "react"; import { Image, Pressable, Text } from "react-native"; import { Palette, Style } from "../styles"; import { FONT_FAMILY } from "../styles/Fonts"; import { size } from "../styles/Style"; import { LinearGradient } from "./LinearGradient/LinearGradient"; const GradientButton = ({ title = "", colors = ["#F94697", "#7023F7"], onPress, props, containerStyle = {}, icon, disabled = false, maxWidth = null, }) => { return ( {icon && } {title} ); }; export default GradientButton;