0.0.19 • Published 2 years ago

@owlui/components v0.0.19

Weekly downloads
-
License
MIT
Repository
github
Last release
2 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

2 years ago

0.0.17

2 years ago

0.0.18

2 years ago

0.0.19

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago