Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/null-none/neumorphic-design

Neumorphic Design System
https://github.com/null-none/neumorphic-design

design design-system ui ui-components

Last synced: 15 days ago
JSON representation

Neumorphic Design System

Awesome Lists containing this project

README

        

### Neumorphic Design System

```bash
yarn add neumorphic-design
# or
npm install neumorphic-design
```

```javascript
import React from "react";
import { ThemeProvider } from "styled-components";

import theme from "neumorphic-design/utils/theme";

import { Layout } from "neumorphic-design/components/Layout";
import { Button } from "neumorphic-design/components/Button";
import { Input } from "neumorphic-design/components/Input";
import {
H1,
H2,
H3,
P,
} from "neumorphic-design/components/Typography";

function App() {
return (



Hello World



Lorem Ipsum



Lorem Ipsum



Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy




Button


Button


Button







);
}

export default App;

```