semantic-ui-react
Version:
The official Semantic-UI-React integration.
16 lines (10 loc) • 331 B
TypeScript
import * as React from 'react';
export interface DropdownDividerProps {
[key: string]: any;
/** An element type to render as (string or function). */
as?: any;
/** Additional classes. */
className?: string;
}
declare const DropdownDivider: React.ComponentClass<DropdownDividerProps>;
export default DropdownDivider;