99.10.0 • Published 4 years ago

@temporg/ui-toggle-details v99.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

category: packages

ui-toggle-details

npm  build-status  MIT License  Code of Conduct

A styled toggleable, accordion-like component.

Components

The ui-toggle-details package contains the following:

Installation

yarn add @temporg/ui-toggle-details

Usage

import React from 'react'
import { ToggleDetails } from '@temporg/ui-toggle-details'

const MyToggleDetails = () => {
  return (
    <ToggleDetails summary="Hello toggle">
      <Text>Hello details</Text>
    </ToggleDetails>
  )
}