// components/FloatingButton.tsx import { AccentColor, MainColor } from "@/constants/color-palet"; import React from "react"; import { StyleSheet, ViewStyle } from "react-native"; import { FAB } from "react-native-paper"; // Props untuk komponen interface FloatingButtonProps { onPress: () => void; // label?: string; icon?: string; // MaterialCommunityIcons style?: ViewStyle; } const FloatingButton: React.FC = ({ onPress, // label = "Buat", icon = "pencil-plus-outline", style, }) => { return ( ); }; const styles = StyleSheet.create({ fab: { position: "absolute", margin: 16, right: 0, bottom: 0, backgroundColor: AccentColor.softblue, // Warna Twitter biru borderRadius: 50, borderColor: AccentColor.blue, borderWidth: 1, }, }); export default FloatingButton;