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