yarn add neumorphic-design
# or
npm install neumorphic-design
importReactfrom"react";import{ThemeProvider}from"styled-components";importthemefrom"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";functionApp(){return(<ThemeProvidertheme={theme}><Layout><H1mb={2}>
Hello World
</H1><H2mb={2}>
Lorem Ipsum
</H2><H3mb={2}>
Lorem Ipsum
</H3><Pmb={2}fontSize="small"fontWeight={500}lineHeight="140%">
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
</P><div><Buttonvariant="primary"mt={2}mr={3}>
Button
</Button><Buttonvariant="secondary"mt={2}mr={3}>
Button
</Button><Buttonmt={2}mr={3}>
Button
</Button></div><div><Inputmt={3}placeholder="Placeholder"width="300px"/></div></Layout></ThemeProvider>);}exportdefaultApp;