UNPKG

@nurl/panda-preset

Version:

Official Panda-CSS preset for the Ganglion Design System.

22 lines 487 B
// src/recipes/textLink.ts import { defineRecipe } from "@pandacss/dev"; var textLink = defineRecipe({ className: "text-link", description: "The styles for the TextLink component", base: { color: "action.navigation.initial", textStyle: "link", _hover: { color: "action.navigation.hover" }, _visited: { color: "action.navigation.visited" } }, variants: {}, defaultVariants: {} }); export { textLink }; //# sourceMappingURL=textLink.js.map