New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@taureau/ui

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@taureau/ui

UI components built with React

latest
npmnpm
Version
4.0.43
Version published
Maintainers
1
Created
Source

taureau ui

Install

Make sure you've installed TailwindCSS and daisyUI.

Install the package with npm or yarn:

npm install @taureau/ui
or
yarn add @taureau/ui

To prevent TailwindCSS from purging your styles, add the following line to your tailwind.config.js:

module.exports = {
  content: [
    'node_modules/daisyui/dist/**/*.js',
    'node_modules/@taureau/ui/dist/**/*.js',
  ],
  plugins: [require('daisyui')],
}

⚡ Quick Start

Import components within your component files:

import { Button } from '@taureau/ui'

export default (props) => {
  return <Button color="primary">Click me!</Button>
}

FAQs

Package last updated on 13 Oct 2023

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