@nurl/panda-preset
Version:
Official Panda-CSS preset for the Ganglion Design System.
22 lines (17 loc) • 416 B
text/typescript
import { defineRecipe } from '@pandacss/dev'
export const 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: {},
})