New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

sore-ui

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sore-ui

A simple and lightweight react library for every use

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

Sore UI

Sore UI is a simple ui library for your react app.

Installation

npm install sore-ui

or

yarn add sore-ui

Usage

import { Button } from "sore-ui";

function Component() {
  return <Button mb="10px">Button</Button>;
}

Use default theme

// In your app.jsx
import { ThemeProvider } from "@xstyled/styled-components";
import { defaultTheme, GlobalStyle } from "sore-ui";
// ...

ReactDOM.render(
  document.getElementById("root"),
  <ThemeProvider theme={defaultTheme}>
    <GlobalStyle />
    <App />
  </ThemeProvider>,
);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

GNU GPLv3

Keywords

ui

FAQs

Package last updated on 03 Dec 2021

Did you know?

Socket

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