feat(component): add Tooltip

Closes #11

- Fixes `tabindex` prop storybook typo
This commit is contained in:
Eric Liu 2019-12-29 10:10:56 -08:00
commit 7e5252951a
19 changed files with 350 additions and 24 deletions

View file

@ -37,7 +37,7 @@ export const Container = () => ({
disabled: boolean('Disabled (disabled in <Tab>)', false),
href: text('The href for tab (href in <Tab>)', '#'),
role: text('ARIA role (role in <Tab>)', 'presentation'),
tabindex: number('Tab index (tabindex in <Tab>)', 0)
tabindex: text('Tab index (tabindex in <Tab>)', '0')
}
}
});