Guides
Using Panda in a Component Library
When creating a component library that uses Panda which can be used in a variety of different projects, you have four options:
- Ship a Panda preset
- Ship a static CSS file
- Use Panda as external package, and ship the src files
- Use Panda as external package, and ship the build info file
In the examples below, we use tsup
as the build tool. You can use any other build tool.
Ship a Panda Preset
This is the simplest approach. You can include the token, semantic tokens, text styles, etc. within a preset and consume them in your projects.
Library code
import { definePreset } from '@pandacss/dev'
export const acmePreset = definePreset({
theme: {
extend: {
tokens: {
colors: { primary: { value: 'blue.500' } }
}
}
}
})
Build the preset code
pnpm tsup src/index.ts
App code
import { acmePreset } from '@acme-org/panda-preset'
import { defineConfig } from '@pandacss/dev'
export default defineConfig({
//...
presets: ['@pandacss/dev/presets', acmePreset]
})
Adding a preset will remove the default theme from Panda. To add it back, you need to include the @pandacss/dev/presets
preset.
Ship a Static CSS File
This approach involves extracting the static css of your library at build time. Then you can import the CSS file in your app code.
Library code
import { css } from '../styled-system/css'
export function Button({ children }) {
return (
<button type="button" className={css({ bg: 'red.300', px: '2', py: '3' })}>
{children}
</button>
)
}
Then you can build the library code and generate the static CSS file:
# build the library code
tsup src/index.tsx
# generate the static CSS file
panda cssgen --outfile dist/styles.css
Finally, don't forget to include the cascade layers as well in your app code:
App code
import { Button } from '@acme-org/design-system'
import './main.css'
export function App() {
return <Button>Click me</Button>
}
main.css
@layer reset, base, tokens, recipes, utilities;
@import url('@acme-org/design-system/dist/styles.css');
/* Your own styles here */
This approach comes with a few downsides:
-
You can't customize the styles since the css is already generated
-
You might need add the prefix option to avoid className conflicts
import { defineConfig } from '@pandacss/dev' export default defineConfig({ //... prefix: 'acme' })
-
You might have duplicate CSS classes when using multiple atomic css libraries
Use Panda as external package
Let's make a dedicated workspace package for your outdir
:
- Create a new directory
packages/styled-system
(or any other name) - Install
@pandacss/dev
as a dev dependency - Run the
panda init
command in there to generate apanda.config.ts
file, don't forget to set thejsxFramework
if needed - [optional] you might want to install and import your preset in this
panda.config.ts
file as well - Run the
panda emit-pkg
command to set the entrypoints inexports
(opens in a new tab)
This should look similar to this:
{
"name": "@acme-org/styled-system",
"version": "1.0.0",
"devDependencies": {
"@pandacss/dev": "^0.27.3"
},
"exports": {
"./css": {
"types": "./css/index.d.ts",
"require": "./css/index.mjs",
"import": "./css/index.mjs"
},
"./tokens": {
"types": "./tokens/index.d.ts",
"require": "./tokens/index.mjs",
"import": "./tokens/index.mjs"
},
"./types": {
"types": "./types/index.d.ts",
"require": "./types/index.mjs",
"import": "./types/index.mjs"
},
"./patterns": {
"types": "./patterns/index.d.ts",
"require": "./patterns/index.mjs",
"import": "./patterns/index.mjs"
},
"./recipes": {
"types": "./recipes/index.d.ts",
"require": "./recipes/index.mjs",
"import": "./recipes/index.mjs"
},
"./jsx": {
"types": "./jsx/index.d.ts",
"require": "./jsx/index.mjs",
"import": "./jsx/index.mjs"
},
"./styles.css": "./styles.css"
}
}
Going forward, you'll now import the functions from the @acme-org/styled-system
monorepo package.
import { css } from '@acme-org/styled-system/css'
export function Button({ children }) {
return (
<button type="button" className={css({ bg: 'red.300', px: '2', py: '3' })}>
{children}
</button>
)
}
App code
Install the newly created @acme-org/styled-system
package in your app code.
pnpm add @acme-org/styled-system
Configure the importMap
in your panda.config.ts
to match the name
field of your outdir package.json
. This will inform Panda which imports belong to the styled-system
.
import { defineConfig } from '@pandacss/dev'
export default defineConfig({
//...
importMap: '@acme-org/styled-system',
outdir: 'styled-system'
})
Mark the @acme-org/styled-system
as an external package in your library build tool. This ensures that the generated JS runtime code is imported only once, avoiding duplication.
tsup src/index.tsx --external @acme-org/styled-system
Include the src
directory from the library code in the panda config.
import { defineConfig } from '@pandacss/dev'
export default defineConfig({
//...
include: ['../@acme-org/design-system/src/**/*.tsx', './src/**/*.{ts,tsx}'],
importMap: '@acme-org/styled-system',
outdir: 'styled-system'
})
Summary:
- create a Panda preset so that you (and your users) can share the same design system tokens
- create a workspace package for your outdir (
@acme-org/styled-system
) - always keep the
importMap
and the name of theoutdir
package.json
in sync - have your component library (
@acme-org/components
) use the@acme-org/styled-system
package as external (so your users can override or extend your design system tokens)
Ship the build info file
This approach is similar to the previous one, but instead of shipping the source code, you ship the Panda build info file. This will have the exact same end-result as adding the sources files in the include
, but it will allow you not to ship the source code.
The build info file is a JSON file that only contains the information about the static extraction result, you still need to ship your app build/dist by yourself. It can be used by Panda to generate CSS classes without the need for parsing the source code.
Generate the build info file:
panda ship --outfile dist/panda.buildinfo.json
App code
Install the newly created @acme-org/styled-system
package in your app code.
pnpm add @acme-org/styled-system
Configure the importMap
in your panda.config.ts
to match the name
field of your outdir package.json
. This will inform Panda which imports belong to the styled-system
.
import { defineConfig } from '@pandacss/dev'
export default defineConfig({
//...
importMap: '@acme-org/styled-system',
outdir: 'styled-system'
})
Next, you need to include the build info file from the library code in the panda config.
import { defineConfig } from '@pandacss/dev'
export default defineConfig({
//...
include: [
'./node_modules/@acme-org/design-system/dist/panda.buildinfo.json',
'./src/**/*.{ts,tsx}'
],
importMap: '@acme-org/styled-system',
outdir: 'styled-system'
})
Recommendations
- Library Code shouldn't be published on npm and App code uses Panda, use ship build info approach
- App code might not use Panda, use the static css file approach
- App code lives in an internal monorepo, use the include src files approach
- Library code doesn't ship components but only ships tokens, patterns or recipes, use the ship preset approach
⚠️ If you use the include src files
or ship build info
approach, you might also need to ship a preset
if your library code has any custom tokens, patterns or recipes.
Troubleshooting
-
When using
tsup
or any other build tool for your component library, if you run into a module resolution error that looks similar toERROR: Could not resolve "../styled-system/xxx"
. Consider setting theoutExtension
in the panda config tojs
-
If you use Yarn PnP, you might need to set the
nodeLinker: node-modules
in the.yarnrc.yml
file.