Sha256: bfb8b8d6511ac6fd82debeaec521886be446015a4043b3deeb6e714a9c2dcc55
Contents?: true
Size: 1.83 KB
Versions: 2
Compression:
Stored size: 1.83 KB
Contents
import React from "react"; import { Nav, NavItem } from '../..' const CollapsibleNav = (props) => { return ( <Nav> <NavItem active collapsible collapsibleTrail fontWeight="bold" iconLeft="city" iconRight={["plus", "minus"]} link="#" text="Overview" {...props} > <NavItem link="#" text="City" {...props} /> <NavItem link="#" text="People" {...props} /> <NavItem link="#" text="Business" {...props} /> </NavItem> <NavItem collapsible collapsibleTrail // fontWeight="bold" iconLeft="theater-masks" iconRight={["plus", "minus"]} link="#" text="Albums" {...props} > <NavItem link="#" text="Entertainment" {...props} /> <NavItem link="#" text="Food" {...props} /> <NavItem link="#" text="Style" {...props} /> </NavItem> <NavItem collapsible collapsibleTrail // fontWeight="bold" iconLeft="city" iconRight={["plus", "minus"]} link="#" text="Similar Artists" {...props} > <NavItem link="#" text="City" {...props} /> <NavItem link="#" text="People" {...props} /> <NavItem link="#" text="Business" {...props} /> </NavItem> </Nav> ); }; export default CollapsibleNav
Version data entries
2 entries across 2 versions & 2 rubygems