This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

vandiermen-design-system

1.3.2 • Public • Published

A minimalistic Design System

This is a design system with focus on minimalism. The design system is open source and will be used for internal projects.

Installation

To install simply run.

npm i vandiermen-design-system

Quick start

This is an example of how to use the different components in the design system.

import react, { useState } from 'react'

import { Button, Input } from 'vandiermen-design-system'

function Form {

    const[message, setMessage] = useState('')

    return (
        <Input 
            placeholder="Enter message"
            value={message}
            onChange={e => {setMessage(e.target.value)}}
        />
        <Button intent="primary">Submit</Button>
    )
}

To use icons

Icons By Feather (source: https://feathericons.com)

Install package.

npm i react-feather

Import into js file.

import { Bell } from 'react-feather'

Custom styling

Coming soon!

Readme

Keywords

none

Package Sidebar

Install

npm i vandiermen-design-system

Weekly Downloads

22

Version

1.3.2

License

none

Unpacked Size

980 kB

Total Files

218

Last publish

Collaborators

  • yvandiermen