Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@davincihealthcare/elty-react-components

Package Overview
Dependencies
Maintainers
3
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@davincihealthcare/elty-react-components

The "@davincihealthcare/elty-react-components" is a collection of reusable React components designed to simplify the development of user interfaces. This library can accept custom CSS class names or use Elty TaiwlindCSS [preset](https://github.com/Davinci

  • 1.1.20
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

@davincihealthcare/elty-react-components

The "@davincihealthcare/elty-react-components" is a collection of reusable React components designed to simplify the development of user interfaces. This library can accept custom CSS class names or use Elty TaiwlindCSS preset styles.

Installation

To install the library, run the following command:

yarn add @davincihealthcare/elty-react-components

How to use

Here is an example of using the library with Elty preset:

import React from 'react';
import { Button } from '@davincihealthcare/elty-react-components';

function App() {
  return (
    <div>
      <Button ariaLabel="simple click">click me</Button>
    </div>
  );
}

export default App;

or using with custom CSS class names:

import React from 'react';
import { Button } from '@davincihealthcare/elty-react-components';

function App() {
  return (
    <div>
      <Button ariaLabel="simple click" className="btn btn--primary">
        click me
      </Button>
    </div>
  );
}

export default App;

Docs

For more information on using the components, see demo page.

FAQs

Package last updated on 24 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc