JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q34676F
  • License MIT

The bootstrap breadcrumb component created with styled-components

Package Exports

  • @arnat/styled-breadcrumb

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@arnat/styled-breadcrumb) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ARNAT - styled-breadcrumb

npm Travis branch Codecov branch storybook lerna

Modular approach to use bootstrap components for quick prototypes, as an entrypoint of the component library.

Usage

import { Breadcrumb, BreadcrumbItem } from '@arnat/styled-breadcrumb';

const MyBreadcrumbComponent = props => (
  <Breadcrumb>
    <BreadcrumbItem>
      <a href="#">Home</a>
    </BreadcrumbItem>
    <BreadcrumbItem>
      <a href="#">Library</a>
    </BreadcrumbItem>
    <BreadcrumbItem active>Data</BreadcrumbItem>
  </Breadcrumb>
);

Properties

Properties which can be added to the component to change the visual appearance.

  • pill only on Breadcrumb Type: boolean
  • noRadius only on Breadcrumb Type: boolean
  • active only on BreadcrumbItem Type: boolean