0.0.19 • Published 3 years ago

@owlui/components v0.0.19

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

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/components

yarn add @owlui/components

Examples

Importing All Components

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

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.

0.0.16

3 years ago

0.0.17

3 years ago

0.0.18

3 years ago

0.0.19

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago