0.118.5 • Published 2 years ago

@testeeds/ds v0.118.5

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

admin-ui

VTEX admin component library

Documentation site: https://admin-ui-docs.vercel.app/guide/get-started/

NPM

Install

yarn add @vtex/admin-ui @vtex/admin-ui-icons
npm install @vtex/admin-ui @vtex/admin-ui-icons

Typescript

If you are using typescript 4.1 & above, ignore the following steps

This package uses emotion v11, so if you are under typescript 4.1 you must install @emotion/react as a dev dependency and add it to your types.

yarn add @emotion/react -D

Add the types within tsconfig.json

// tsconfig.json
{
  compilerOptions:{
    types: ['@emotion/react/types/css-prop'],
    // ...
  }
  // ...
}