Sha256: c313061bf6eaefdac0da8b68ebb6686423224ff7f2de0aad303f9cc56bd634fb
Contents?: true
Size: 1.1 KB
Versions: 472
Compression:
Stored size: 1.1 KB
Contents
import React from 'react' import Nav from '../_nav' import NavItem from '../_item' const SubtleWithIconsNav = (props) => { return ( <Nav variant="subtle"> <NavItem iconLeft="city" link="#" text="City" {...props} /> <NavItem iconLeft="user-friends" iconRight="angle-down" link="#" text="People" {...props} /> <NavItem active iconLeft="user-tie" link="#" text="Business" {...props} /> <NavItem iconLeft="theater-masks" link="#" text="Entertainment" {...props} /> <NavItem iconLeft="salad" iconRight="angle-down" link="#" text="Food" {...props} /> <NavItem iconLeft="sunglasses" link="#" text="Style" {...props} /> <NavItem iconLeft="child" link="#" text="Childern" {...props} /> </Nav> ) } export default SubtleWithIconsNav
Version data entries
472 entries across 472 versions & 2 rubygems