Sha256: 88dbde3f6b0ddc68fbbb52f65364d59ccab311c393dc70cdcace7988cf43c84b
Contents?: true
Size: 927 Bytes
Versions: 94
Compression:
Stored size: 927 Bytes
Contents
import React from 'react' import { Nav } from '../../' import NavItem from '../_item.jsx' const WithIconsNav = (props) => { return ( <Nav link="#" title="Browse" {...props} > <NavItem iconLeft="newspaper" text="News Feed" {...props} /> <NavItem active iconLeft="comments-alt" link="#" text="Messages" {...props} /> <NavItem iconLeft="calendar-check" iconRight="angle-down" link="#" text="Events" {...props} /> <NavItem iconLeft="users" link="#" text="Friends" {...props} /> <NavItem iconLeft="users-class" iconRight="angle-down" link="#" text="Groups" {...props} /> </Nav> ) } export default WithIconsNav
Version data entries
94 entries across 94 versions & 1 rubygems