UNPKG

react-bulma-components

Version:

React components for Bulma framework

20 lines (15 loc) 453 B
import * as React from 'react'; import { BulmaComponent, BulmaComponentWithoutRenderAs } from '..'; interface MenuListComponentProps { title?: React.ReactNode; } interface MenuListItemProps { active?: boolean; children?: React.ReactNode; } declare const Menu: BulmaComponent<{}, 'aside'> & { List: BulmaComponentWithoutRenderAs<MenuListComponentProps, 'ul'> & { Item: BulmaComponent<MenuListItemProps, 'a'>; }; }; export default Menu;