Backpack chip component.
npm install bpk-component-chip --save-dev
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>
);
Property | PropType | Required | Default Value |
---|---|---|---|
children | node | true | - |
onClose | func | true | - |
closeLabel | oneOfType(string, func) | true | - |
className | string | false | null |