UNPKG

@mgoodfellow/park-ui-panda-preset

Version:

Panda CSS Preset for Park UI

28 lines (26 loc) 612 B
import { tooltipAnatomy } from '@ark-ui/anatomy' import { defineSlotRecipe } from '@pandacss/dev' export const tooltip = defineSlotRecipe({ className: 'tooltip', slots: tooltipAnatomy.keys(), base: { content: { background: 'gray.a12', borderRadius: 'l2', boxShadow: 'sm', color: 'bg.default', fontWeight: 'semibold', px: '3', py: '2', textStyle: 'xs', maxWidth: '2xs', zIndex: 'tooltip', _open: { animation: 'fadeIn 0.25s ease-out', }, _closed: { animation: 'fadeOut 0.2s ease-out', }, }, }, })