@do-ob/ui
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

do-ob logo

User Interface

A TailwindCSS and NextUI-(Open Source) components library for React projects. This library provides a set of pre-built, UI components to accelerate web application development.

Indended for use with modern ESM TypeScript in other do-ob projects. Documentation is limited at this time.

Libraries Leveraged

Installation

  1. Install the required dependencies using npm, pnpm, or yarn:
'@do-ob/ui' 'react' 'react-dom' '@nextui-org/react' 'framer-motion' 'tailwindcss' 'tailwindcss' '@tailwindcss/typography' '@heroicons/react'
  1. Add the following to your tailwind.config.ts file:
import type { Config } from 'tailwindcss';
import { nextui } from '@nextui-org/react';
import tailwindTypography from '@tailwindcss/typography';

const config: Config = {
  darkMode: 'class',
  content: [
    './node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
    './node_modules/@do-ob/ui/dist/**/*.{js,ts,jsx,tsx}',
    './app/**/*.{js,ts,jsx,tsx,mdx}',
  ],
  plugins: [
    nextui(),
    tailwindTypography,
  ],
};
export default config;

Package Sidebar

Install

npm i @do-ob/ui

Weekly Downloads

5

Version

1.2.0

License

MIT

Unpacked Size

141 kB

Total Files

153

Last publish

Collaborators

  • eric-crowell