1.3.2 • Published 1 year ago

vandiermen-design-system v1.3.2

Weekly downloads
281
License
-
Repository
-
Last release
1 year ago

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!

1.3.2

1 year ago

1.3.1

1 year ago

1.3.0

2 years ago

1.2.0

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.2

2 years ago

1.2.9

2 years ago

1.2.12

2 years ago

1.2.13

2 years ago

1.2.10

2 years ago

1.2.11

2 years ago

1.2.16

2 years ago

1.2.14

2 years ago

1.2.15

2 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.1.0

3 years ago