Divider.d.ts 230 B

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