JSPM

@instructure/ui-link

11.2.1-snapshot-9
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2041
  • Score
    100M100P100Q137862F
  • License MIT

A component for creating links

Package Exports

  • @instructure/ui-link
  • @instructure/ui-link/es/index.js
  • @instructure/ui-link/lib/Link
  • @instructure/ui-link/lib/Link/index.js
  • @instructure/ui-link/lib/index.js

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

Readme

npm MIT License Code of Conduct

A styled HTML link component

Components

The ui-link package contains the following:

Installation

npm install @instructure/ui-link

Usage

import React from 'react'
import { Link } from '@instructure/ui-link'

const MyLink = () => {
  return (
    <Text>
      This is <Link href="http://instructure.design">a link</Link>!
    </Text>
  )
}