UNPKG
@rc-component/menu
Version:
latest (1.2.0)
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
menu ui component for react
github.com/react-component/menu
react-component/menu
@rc-component/menu
/
lib
/
Divider.d.ts
5 lines
(4 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
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
;