Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

liveperson-design-system

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

liveperson-design-system

The company design system for LivePerson

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

LivePerson Design System

Checkout the demos

Installing

You can install LPDS with NPM or Yarn.

  • NPM: npm i liveperson-design-system
  • YARN: yarn add liveperson-design-system

How to use

Setup

First, you have to add the following script inside head tag

<script src="https://unpkg.com/liveperson-design-system/main.js"></script>

Usage

You can use any LPDS component either in a browser or with a front-end framework

Browser

<html>
  <head>
    <script src="https://unpkg.com/liveperson-design-system/components/button.js" />
  </head>

  <body>
    <lp-button labal="Button" />
  </body>
</html>

Framework (React)

import React from 'react';

import 'liveperson-design-system/components/button';

const App = () => {
  return (
    <lp-button label="Button" />
  );
};

export default App

License

MIT © LivePersonInc

Keywords

design-system

FAQs

Package last updated on 06 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts