No description
- TypeScript 100%
| .husky | ||
| src | ||
| .gitignore | ||
| biome.json | ||
| bun.lock | ||
| bunfig.toml | ||
| commitlint.config.ts | ||
| lint-staged.config.ts | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
srjuggernaut-panda-preset
A preset for Panda CSS
Usage
-
Install Panda CSS
-
Set up the
@srjuggernaut-devregistry
with node add the following to your .npmrc
@srjuggernaut-dev:registry=https://git.srjuggernaut.dev/api/packages/SrJuggernaut/npm/
with bun add the following to your bunfig.toml
[install.scopes]
"@srjuggernaut-dev" = "https://git.srjuggernaut.dev/api/packages/SrJuggernaut/npm/"
- Install the preset
with node:
npm install @srjuggernaut-dev/panda-preset
with bun:
bun add @srjuggernaut-dev/panda-preset
- Add the preset to your
panda.config.{js,ts}
import { defineConfig } from '@pandacss/dev'
import srJuggernautPandaPreset from '@srjuggernaut-dev/panda-preset'
export default defineConfig({
presets: [srJuggernautPandaPreset()],
})