import { Primitive, type PrimitiveProps } from "@seed-design/react-primitive"; import { fab, type FabVariantProps } from "@seed-design/css/recipes/fab"; import type * as React from "react"; import { createRecipeContext } from "../../utils/createRecipeContext"; const { withContext } = createRecipeContext(fab); //////////////////////////////////////////////////////////////////////////////////// /** * @deprecated Use `ContextualFloatingButton` instead. */ export interface FabProps extends FabVariantProps, PrimitiveProps, React.ButtonHTMLAttributes {} /** * @deprecated Use `ContextualFloatingButton` instead. */ export const Fab = withContext(Primitive.button);