UNPKG
sidebar-ui-react
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
React Sidebar
github.com/Roxiler/react-sidebar
Roxiler/react-sidebar
sidebar-ui-react
/
build
/
Components
/
ProfileDetails
/
index.d.ts
11 lines
(10 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
import
'../../styles/sidebar.scss'
;
interface
IProps
{
className
?:
string
;
name
:
string
;
email
:
string
;
avatar
:
string
; }
declare
const
ProfileDetails
:
React
.
FC
<
IProps
>;
export
default
ProfileDetails
;