@planview/pv-uikit
v7.22.1
Published
Implementation of sharable components from Planview's Design System
Downloads
6,308
Readme
@planview/pv-uikit
React implementation of Planview Design System Components
following the specification.
Go to the official documentation for more details
Setup
You can install @planview/pv-uikit
in multiple ways:
- With NPM
npm install styled-components --save # peerDependency
npm install @planview/pv-uikit --save
- With Yarn
yarn add styled-components # peerDependency
yarn add @planview/pv-uikit
Usage
import * as React from 'react'
import { Avatar, AVATAR_SIZE_MEDIUM } from "@planview/pv-uikit"
function MyAvatar {
return (
<Avatar
alt="Jordan's avatar"
src="img/avatars/initial_avatar_DS.png"
/>
)
)