Files
copilot-toolbox-template-123/node_modules/rc-menu/lib/Divider.d.ts
2026-01-09 14:52:46 +00:00

5 lines
230 B
TypeScript

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;