import React from "react"; import { usePrimaryColor } from "../PrimaryColorContext"; import type { IconOptions } from "./Icon"; import IconButton from "./IconButton"; export default function FAB({ icon = "plus", onPress, }: { icon?: IconOptions; onPress: () => void; }) { const primaryColor = usePrimaryColor(); return ( ); }