Skip to content

Latest commit

 

History

History
 
 

bpk-component-chip

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

bpk-component-chip

Backpack chip component.

Installation

npm install bpk-component-chip --save-dev

Usage

import React from 'react';
import BpkChip from 'bpk-component-chip';

export default () => (
  <BpkChip
    closeLabel="Close"
    onClose={event => console.log('Chip closing!', event)}
  >
    This is a chip!
  </BpkChip>
);

Props

Property PropType Required Default Value
children node true -
onClose func true -
closeLabel oneOfType(string, func) true -
className string false null