
Product
Socket Brings Supply Chain Security to skills.sh
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.
create-kvy
Advanced tools
Read more: https://panda-css.com/docs/theming/tokens & https://panda-css.com/docs/customization/theme
Dark mode: https://panda-css.com/docs/guides/multiple-themes
Text styles (font-size, font-weight, line-height, letter-spacing) for specific tags (h1, h2, p, etc.)
All typography components are located in src/ui/components/typography, includes:
Heading - h1, h2, h3, h4, h5, h6Text: p, span, div, labelLink: aCode: codeHeading and Text components have as prop, which is used to render specific tag and apply text styles.
For example:
<Heading as="h1">Heading 1</Heading>
This will render h1 tag with h1 text styles (which are defined in src/ui/components/typography/Heading/recipes.ts)
You can customize text styles for specific tags by update recipes.ts file.
The same for Text component:
<Text as="p">Paragraph</Text>
Example for button component:
recipes.ts in src/ui/components/Buttonimport {RecipeConfig, RecipeVariantRecord} from '@/styled-system/types'
export const buttonStyle: Record<string, Partial<RecipeConfig<RecipeVariantRecord>>> = {
button: {
// write your recipe here
},
}
panda.config.tsimport { defineConfig } from '@pandacss/dev'
import { buttonStyle } from '@/web/components/Button/recipes'
export default defineConfig({
// Whether to use css reset
preflight: true,
presets: ['@pandacss/preset-base', '@park-web/panda-preset'],
// Where to look for your css declarations
include: ['./src/**/*.{js,jsx,ts,tsx}', './pages/**/*.{js,jsx,ts,tsx}'],
// Files to exclude
exclude: [],
// Useful for theme customization
theme: {
extend: {
recipes: {
...buttonStyle
},
},
},
// The output directory for your css system
outdir: './src/styled-system',
jsxFramework: 'react',
})
We using @iconify/react package to render icons. The reason is that this package allows us to use any icon library (
Material, FontAwesome, etc.) and any icon set (Solid, Regular, etc.).
You can find all icons here: https://icon-sets.iconify.design/
Example:
import {Icon} from '@iconify/react'
const MyComponent = () => {
return (
<div>
<Icon icon="mdi:home"/>
</div>
)
}
FAQs
Unknown package
The npm package create-kvy receives a total of 1 weekly downloads. As such, create-kvy popularity was classified as not popular.
We found that create-kvy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.