refactor(components): alphabetize exported props for scannability

This commit is contained in:
Eric Liu 2019-12-31 16:36:10 -08:00
commit b1fe3de8ad
78 changed files with 265 additions and 264 deletions

View file

@ -1,10 +1,10 @@
<script>
let className = undefined;
export { className as class };
export let href = undefined;
export let rel = undefined;
export let light = false;
export let clicked = false;
export let href = undefined;
export let light = false;
export let rel = undefined;
export let style = undefined;
import { cx } from '../../lib';

View file

@ -26,6 +26,8 @@ export const MultiSelect = () => ({
}
});
MultiSelect.story = { name: 'Multi-select' };
export const Selectable = () => ({
Component,
props: {