
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
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 '@/ui/components/Button/recipes'
export default defineConfig({
// Whether to use css reset
preflight: true,
presets: ['@pandacss/preset-base', '@park-ui/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 13 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.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.