// components/shared/FloatingActionButton.tsx import React from 'react'; import { View, ViewStyle } from 'react-native'; import { LucideIcon, Dumbbell } from 'lucide-react-native'; import { Button } from '@/components/ui/button'; interface FloatingActionButtonProps { icon?: LucideIcon; onPress?: () => void; className?: string; } export function FloatingActionButton({ icon: Icon = Dumbbell, onPress, className, style }: FloatingActionButtonProps & { style?: ViewStyle }) { return ( ); }