2.13.4 • Published 2 years ago

layla-ui-library v2.13.4

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

npm version

Layla UI is a React UI library that provides a set of unstyled customizable UI components.

Installation

Layla UI is available as an npm package.

npm:

npm install layla-ui-library

Getting started

Here is an example using a Button component:

import * as React from "react";
import { Button } from "layla-ui-library";

function App() {
  return <Button>Next</Button>;
}

Styling

Components are unstyled and compatible with any styling solution, giving you full control.

CSS-in-JS

import styled from "styled-components";
import { Button } from "layla-ui-library";

export const StyledButton = styled(Button)`
  background-color: #ff0000;
`;

Class attribute

import { Button } from "layla-ui-library";
import "./styles.css";

function App() {
  return <Button className="styledButton">Next</Button>
}

export default App;

// styles.css

.styledButton {
  background-color: #000000;
}

Changelog

The changelog is regularly updated to reflect what's changed in each new release.

2.11.0

2 years ago

2.10.1

2 years ago

2.12.0

2 years ago

2.11.1

2 years ago

2.10.2

2 years ago

2.10.0

2 years ago

2.7.0

2 years ago

2.8.1

2 years ago

2.8.0

2 years ago

2.8.3

2 years ago

2.8.2

2 years ago

2.13.4

2 years ago

2.8.5

2 years ago

2.8.4

2 years ago

2.13.2

2 years ago

2.12.3

2 years ago

2.8.7

2 years ago

2.13.3

2 years ago

2.13.0

2 years ago

2.12.1

2 years ago

2.11.2

2 years ago

2.10.3

2 years ago

2.13.1

2 years ago

2.12.2

2 years ago

2.10.4

2 years ago

2.5.2

2 years ago

2.5.1

2 years ago

2.5.0

2 years ago

2.4.0

2 years ago

2.3.1

2 years ago

2.2.0

2 years ago

2.1.0

2 years ago

2.0.6

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.1

2 years ago