UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

10 lines (9 loc) 401 B
import { HTMLAttributes, PropsWithChildren, ReactNode } from 'react'; interface MenuRowProps extends PropsWithChildren { icon?: ReactNode; buttonClassName?: HTMLAttributes<HTMLButtonElement>['className']; disabled?: boolean; } declare function MenuRow(props: MenuRowProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof MenuRow>; export default _default;