GodUIGodUI
109Follow on X

Gooey FAB

tsx
import { GooeyFab } from "@/components/godui/gooey-fab";const Icon = ({ d }) => (<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="size-[45%]">  <path d={d} /></svg>);export function GooeyFabDemo() {return (  <GooeyFab    actions={[      { label: "Edit", icon: <Icon d="M12 20h9M16.5 3.5a2.1 2.1 0 0 1 3 3L7 19l-4 1 1-4Z" /> },      { label: "Share", icon: <Icon d="M4 12v8h16v-8M12 16V4M8 8l4-4 4 4" /> },      { label: "Delete", icon: <Icon d="M3 6h18M8 6V4h8v2M6 6l1 14h10l1-14" /> },    ]}  />);}