Sha256: e3352c3e62571ec9a5795d394cf3a1fb7ff60dad6bb582373cb3cb2d0a4bd289
Contents?: true
Size: 1.62 KB
Versions: 60
Compression:
Stored size: 1.62 KB
Contents
import React from "react"; import { Nav, NavItem } from '../..' const CollapsibleNav = (props) => { return ( <Nav variant="bold" {...props} > <NavItem active collapsed={false} collapsible iconLeft="city" link="#" text="Overview" {...props} > <NavItem link="#" text="City" {...props} /> <NavItem link="#" text="People" {...props} /> <NavItem link="#" text="Business" {...props} /> </NavItem> <NavItem collapsible iconLeft="theater-masks" link="#" text="Albums" {...props} > <NavItem link="#" text="Entertainment" {...props} /> <NavItem link="#" text="Food" {...props} /> <NavItem link="#" text="Style" {...props} /> </NavItem> <NavItem collapsible iconLeft="city" 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
60 entries across 60 versions & 2 rubygems