@owlui/lib
TypeScript icon, indicating that this package has built-in type declarations

0.0.46 • Public • Published

Components

The purpose of this package is to provide a convenient method of importing the entirety of Owl UI.

Usage

Once this package is installed it can be used directly or on a individual component basis.

Installation:

npm i @owlui/lib

yarn add @owlui/lib

Examples

Importing All Components

import * as owlui from '@owlui/lib';

const DefaultBtn = owlui.button.Default;

export const Element = props => {
  const { children } = props;

  return <DefaultBtn>{children}</DefaultBtn>;
};

export default {
  Element,
};

Importing Single Component

import { Default as DefaultBtn } from '@owlui/button';

export const Element = props => {
  const { children } = props;

  return <DefaultBtn>{children}</DefaultBtn>;
};

export default {
  Element,
};

Customization

Details on how to customize the styling of components can be found here.

Readme

Keywords

none

Package Sidebar

Install

npm i @owlui/lib

Weekly Downloads

4

Version

0.0.46

License

MIT

Unpacked Size

22 MB

Total Files

71

Last publish

Collaborators

  • oseivale
  • sclarkeosg
  • cicerofonsecaosg
  • caube_osg