General
FAB Group
An expandable floating action button that reveals multiple related actions when toggled.
Expandable Menu Preview
Camera
Gallery
Document
Props
| Prop | Type |
|---|---|
actions | FabAction[] |
mainIcon | ReactNode |
className | string |
Action Interface
interface FabAction {
icon: React.ReactNode;
label: string;
onPress: () => void;
variant?: 'primary' | 'secondary' | 'muted';
}