General

FAB Group

An expandable floating action button that reveals multiple related actions when toggled.

Expandable Menu Preview
Camera
Gallery
Document

Props

PropType
actionsFabAction[]
mainIconReactNode
classNamestring

Action Interface

interface FabAction {
  icon: React.ReactNode;
  label: string;
  onPress: () => void;
  variant?: 'primary' | 'secondary' | 'muted';
}

Installation

$npx kachindo-ui add fab-group
Profile