@ygor-ui/presets
Version:
Panda CSS presets for Ark UI components
21 lines (19 loc) • 460 B
text/typescript
import { tooltipAnatomy } from '@ark-ui/react'
import { defineSlotRecipe } from '@pandacss/dev'
export const tooltip = defineSlotRecipe({
className: 'tooltip',
description: 'A tooltip style',
slots: tooltipAnatomy.keys(),
base: {
content: {
background: 'fg.default',
borderRadius: 'l2',
boxShadow: 'lg',
color: 'bg.default',
fontWeight: 'semibold',
px: '3',
py: '2',
textStyle: 'xs',
},
},
})