import { linkContent, type LinkContentVariantProps } from "@seed-design/css/recipes/link-content"; import { Primitive, type PrimitiveProps } from "@seed-design/react-primitive"; import { createRecipeContext } from "../../utils/createRecipeContext"; import type * as React from "react"; import { withStyleProps, type StyleProps } from "../../utils/styled"; const { withContext } = createRecipeContext(linkContent); /** * @deprecated Use `ActionButton` with variant="ghost" instead. */ export interface LinkContentProps extends LinkContentVariantProps, PrimitiveProps, Pick, Omit, "color"> {} /** * @deprecated Use `ActionButton` with variant="ghost" instead. */ export const LinkContent = withContext( withStyleProps(Primitive.span), );