Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/null-none/neumorphic-design
- Owner: null-none
- Created: 2021-12-19T16:26:36.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-07T16:42:40.000Z (about 2 years ago)
- Last Synced: 2024-12-18T06:21:22.283Z (about 2 months ago)
- Topics: design, design-system, ui, ui-components
- Language: JavaScript
- Homepage:
- Size: 3.96 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
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;
```