next.js/examples/panda-css/app/components/link-with-config-recipe.tsx
link-with-config-recipe.tsx20 lines473 B
import { link } from "@/styled-system/recipes";

/**
 * Link with config recipe
 * @see https://panda-css.com/docs/concepts/recipes#config-recipe
 */
export default function LinkWithConfigRecipe() {
  return (
    <a
      className={link({ size: "lg" })}
      href="https://panda-css.com/docs/concepts/recipes#config-recipe"
      target="_blank"
      rel="noreferrer"
    >
      Link with <b>config recipe</b>
      <span className="icon">-&gt;</span>
    </a>
  );
}
Quest for Codev2.0.0
/
SIGN IN