0.0.46 • Published 3 years ago
@owlui/lib v0.0.46
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.
0.0.46
3 years ago
0.0.42
3 years ago
0.0.43
3 years ago
0.0.44
3 years ago
0.0.40
3 years ago
0.0.41
3 years ago
0.0.33
3 years ago
0.0.34
3 years ago
0.0.35
3 years ago
0.0.36
3 years ago
0.0.37
3 years ago
0.0.38
3 years ago
0.0.39
3 years ago
0.0.30
3 years ago
0.0.31
3 years ago
0.0.32
3 years ago
0.0.23
3 years ago
0.0.24
3 years ago
0.0.25
3 years ago
0.0.26
3 years ago
0.0.27
3 years ago
0.0.28
3 years ago
0.0.29
3 years ago
0.0.22
3 years ago
0.0.21
3 years ago