/// import { PressableProps, ViewProps } from "react-native"; import { IconOptions } from "./Icon"; export default function IconButton({ icon, onPress, style, size, color, bordered, align, }: { icon: IconOptions; onPress: PressableProps["onPress"]; style?: ViewProps["style"]; size?: number; color?: string; bordered?: boolean; align?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | "auto"; }): JSX.Element;