Sha256: b8d09cee9c0f2e4c431a7922f061ae819eea65d63586e1ffb0e718ac6b4e5dea
Contents?: true
Size: 1.14 KB
Versions: 1447
Compression:
Stored size: 1.14 KB
Contents
import React from 'react' import Nav from '../_nav' import NavItem from '../_item' const SubtleWithIconsNav = (props) => { return ( <Nav variant="subtle" {...props} > <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
1,447 entries across 1,447 versions & 2 rubygems