JSPM

@hawk-ui/button

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

    hawk-ui: Basic Button Component

    Package Exports

    • @hawk-ui/button

    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 (@hawk-ui/button) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Basic Button Usage:

    <div className="styleguidist__btns-wrap">
      <Button
        type="button"
        onClick={() => { window.alert('Button Was Clicked'); }}
      >
        <span>Simple Button</span>
      </Button>
    </div>