minishouyin/node_modules/rc-menu/lib/Divider.d.ts

5 lines
230 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
import type { MenuDividerType } from './interface';
export type DividerProps = Omit<MenuDividerType, 'type'>;
export default function Divider({ className, style }: DividerProps): React.JSX.Element;