Skip to content

Commit

Permalink
Update README (#321)
Browse files Browse the repository at this point in the history
- Remove Travis badge
- Use new Lit imports
  • Loading branch information
rslawik authored Oct 20, 2021
1 parent 6e350bb commit bfafab4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

See: [Documentation](https://www.webcomponents.org/element/@google-web-components/google-chart)

[![Build Status](https://travis-ci.org/GoogleWebComponents/google-chart.svg?branch=master)](https://travis-ci.org/GoogleWebComponents/google-chart) [![Published on NPM](https://img.shields.io/npm/v/@google-web-components/google-chart.svg)](https://www.npmjs.com/package/@google-web-components/google-chart) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/@google-web-components/google-chart)
[![Published on NPM](https://img.shields.io/npm/v/@google-web-components/google-chart.svg)](https://www.npmjs.com/package/@google-web-components/google-chart) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/@google-web-components/google-chart)

## Usage

Expand Down Expand Up @@ -32,7 +32,8 @@ npm i @google-web-components/google-chart
### In a LitElement

```typescript
import {LitElement, html, customElement} from 'lit-element';
import {LitElement, html} from 'lit';
import {customElement} from 'lit/decorators.js';
import '@google-web-components/google-chart';

@customElement('new-element')
Expand Down

0 comments on commit bfafab4

Please sign in to comment.