import type { ButtonHTMLAttributes } from "react"; import { cx } from "./utils"; import { Icon, type IconName } from "./Icon"; export type FabProps = ButtonHTMLAttributes & { icon: IconName; label: string; }; export function Fab({ icon, label, className, ...rest }: FabProps) { return ( ); }