feat(components): add Select, SelectItem, SelectItemGroup

Closes #31
This commit is contained in:
Eric Liu 2019-12-21 17:18:35 -08:00
commit 6c75c8a973
9 changed files with 243 additions and 0 deletions

View file

@ -27,6 +27,7 @@ import ProgressIndicator, {
import RadioButton, { RadioButtonSkeleton } from './components/RadioButton';
import RadioButtonGroup from './components/RadioButtonGroup';
import Search, { SearchSkeleton } from './components/Search';
import Select, { SelectSkeleton, SelectItem, SelectItemGroup } from './components/Select';
import SkeletonPlaceholder from './components/SkeletonPlaceholder';
import SkeletonText from './components/SkeletonText';
import Tag, { TagSkeleton } from './components/Tag';
@ -85,6 +86,10 @@ export {
Search,
SearchSkeleton,
SelectableTile,
Select,
SelectSkeleton,
SelectItem,
SelectItemGroup,
SkeletonPlaceholder,
SkeletonText,
Switch,