Skip to content
/ sigma Public

Simple, modern UI library using styled-components and also bundles additional functionality for serpent framework

Notifications You must be signed in to change notification settings

dreesq/sigma

Repository files navigation

Demo

Sigma is an UI library made using styled-components. You can install it using npm install @dreesq/sigma command.

The library is built using the core component Sigma. Here's a basic example on how to use the component:

import { render } from "react-dom";
import { Sigma } from "@dreesq/sigma";

const root = (
  <Sigma
    width={100}
    height={100}
    background={"red"}
    borderRadius={"50%"}
    cursor={"pointer"}
    hover={`
            background: yellow;
        `}
  />
);

render(root, document.querySelector("#root"));

In addition to the core component, the library provides additional useful components such as Grid and Base.

About

Simple, modern UI library using styled-components and also bundles additional functionality for serpent framework

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published