UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

12 lines (11 loc) 293 B
export interface UserPointProps { active? : boolean; firstName? : string; lastName? : string; leftPercent?: number; photo? : string; size? : number; subtitle? : string; } declare const UserPoint: React.ComponentType<UserPointProps>; export default UserPoint;