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

@ -0,0 +1,6 @@
import Select from './Select.svelte';
export default Select;
export { default as SelectSkeleton } from './Select.Skeleton.svelte';
export { default as SelectItem } from './SelectItem.svelte';
export { default as SelectItemGroup } from './SelectItemGroup.svelte';