import * as React from 'react' import { css, cva } from '../../styled-system/css' import { flex, hstack, square, vstack } from '../../styled-system/patterns' import { Yums } from '../icons/yums' import { Logo } from '../icons/logo' import { Wrap } from '../../styled-system/jsx' import { navItems } from '../lib/constants' import { getUrl } from '../lib/url' const buttonRecipe = cva({ base: { display: 'inline-flex', px: '6', py: '3', fontWeight: 'medium', fontSize: '2xl', rounded: 'sm', }, variants: { variant: { solid: { bg: 'yellow.300', color: 'black', }, outline: { borderWidth: '1px', color: 'yellow.300', }, }, }, }) export default function Overview() { return (
Panda Studio

Live documentation for your design tokens (colors, fonts, etc.)

Get Started View Docs
{navItems .filter((k) => k.type === 'token') .map((item, index) => (
))}
) }