JSPM

@instructure/ui-motion

8.0.1-snapshot.3+fb1443ebb
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12158
  • Score
    100M100P100Q140992F
  • License MIT

A UI component library made by Instructure Inc.

Package Exports

  • @instructure/ui-motion
  • @instructure/ui-motion/lib/Transition

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

Readme


category: packages

ui-motion

npm  build-status  MIT License  Code of Conduct

Components

The ui-motion package contains the following:

Installation

yarn add @instructure/ui-motion

Usage

import React from 'react'
import { Heading } from '@instructure/ui-elements'
import { Transition } from '@instructure/ui-motion'

const HeadingWithTransition = () => {
  return (
    <Transition transitionOnMount in>
      <Heading>Hi there!</Heading>
    </Transition>
  )
}