From 655eff4c0293d5c5663119d22dccca3b73e31003 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Fri, 8 Mar 2024 14:53:59 -0300 Subject: [PATCH] [pigment-css][docs] Fix import on the README (#41411) --- packages/pigment-react/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pigment-react/README.md b/packages/pigment-react/README.md index 4cf0253677cea2..19078036889e00 100644 --- a/packages/pigment-react/README.md +++ b/packages/pigment-react/README.md @@ -65,7 +65,7 @@ Finally, import the stylesheet in the root `layout.tsx` file: ```diff import type { Metadata } from 'next'; -+import '@mui/zero-runtime/styles.css'; ++import '@pigment-css/react/styles.css'; export const metadata: Metadata = { title: 'Create Next App', @@ -115,7 +115,7 @@ Finally, import the stylesheet in the root `main.tsx` file: ```diff import * as React from 'react'; import { createRoot } from 'react-dom/client'; -+import '@mui/zero-runtime/styles.css'; ++import '@pigment-css/react/styles.css'; import App from './App'; const rootElement = document.getElementById('root');