Sha256: 2089f663674e0d4c1a3fbf93bcafeadf126090a24460a7d5b1e60692b12028c4
Contents?: true
Size: 591 Bytes
Versions: 17
Compression:
Stored size: 591 Bytes
Contents
/* @flow */ import React from 'react' import { Typeahead } from '../..' const options = [ { label: 'Windows', value: '#FFA500' }, { label: 'Siding', value: '#FF0000' }, { label: 'Doors', value: '#00FF00' }, { label: 'Roofs', value: '#0000FF' }, ] import TypeaheadWithPillsSummary from './_typeahead_with_pills_summary' const TypeaheadWithPills = () => { return ( <> <TypeaheadWithPillsSummary /> <Typeahead isMulti label="Colors" options={options} placeholder="" /> </> ) } export default TypeaheadWithPills
Version data entries
17 entries across 17 versions & 1 rubygems