UNPKG

230 BTypeScriptView Raw
1import * as React from 'react';
2import type { MenuDividerType } from './interface';
3export type DividerProps = Omit<MenuDividerType, 'type'>;
4export default function Divider({ className, style }: DividerProps): React.JSX.Element;