Socket
Socket
Sign inDemoInstall

@owlui/components

Package Overview
Dependencies
13
Maintainers
4
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @owlui/components

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


Version published
Maintainers
4
Created

Changelog

Source

0.0.20 (2022-05-13)

Note: Version bump only for package @owlui/root

Readme

Source

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.

FAQs

Last updated on 13 May 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc